mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Addressed PR suggestions
This commit is contained in:
parent
2fef57fffa
commit
3d06d07516
5 changed files with 9 additions and 11 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -13,7 +13,7 @@ Makefile.local
|
|||
.DS_Store
|
||||
.LSOverride
|
||||
Icon?
|
||||
make-macosx-values.sh
|
||||
make-macosx-values.local
|
||||
|
||||
# Xcode
|
||||
####################
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/bin/bash
|
||||
CC=gcc-4.0
|
||||
|
||||
cd `dirname $0`
|
||||
if [ ! -f Makefile ]; then
|
||||
|
@ -24,7 +23,7 @@ echo "Building X86_64 Client/Dedicated Server"
|
|||
echo "Building ARM64 Client/Dedicated Server"
|
||||
echo
|
||||
|
||||
if [ $1 == "" ]; then
|
||||
if [ "$1" == "" ]; then
|
||||
echo "Run script with a 'notarize' flag to perform signing and notarization."
|
||||
fi
|
||||
|
||||
|
@ -59,7 +58,7 @@ fi
|
|||
|
||||
if [ "$1" == "notarize" ]; then
|
||||
# user-specific values
|
||||
# specify the actual values in a separate file called make-macosx-values.sh
|
||||
# specify the actual values in a separate file called make-macosx-values.local
|
||||
|
||||
# ****************************************************************************************
|
||||
# identity as specified in Keychain
|
||||
|
@ -75,7 +74,7 @@ if [ "$1" == "notarize" ]; then
|
|||
ASC_PROVIDER="XXXXXXXXX"
|
||||
# ****************************************************************************************
|
||||
|
||||
source make-macosx-values.sh
|
||||
source make-macosx-values.local
|
||||
|
||||
# release build location
|
||||
RELEASE_LOCATION="build/release-darwin-universal2"
|
||||
|
|
|
@ -22,7 +22,7 @@ elif [ "$1" == "arm64" ]; then
|
|||
BUILDARCH=arm64
|
||||
else
|
||||
echo "Invalid architecture: $1"
|
||||
echo "Valid architectures are x86, x86_64, arm64 or ppc"
|
||||
echo "Valid architectures are arm64, x86_64, x86, or ppc"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
|
|
@ -46,6 +46,5 @@ TODO:
|
|||
|
||||
|
||||
|
||||
|
||||
NO CARRIER
|
||||
|
||||
|
|
Loading…
Reference in a new issue