mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
Fix OSX-related typos in Makefile and osxbuild.sh.
git-svn-id: https://svn.eduke32.com/eduke32@2425 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
dca9d1357c
commit
93be45cb1a
2 changed files with 3 additions and 3 deletions
|
@ -199,7 +199,7 @@ ifeq ($(PLATFORM),DARWIN)
|
|||
-Wl,-framework,Cocoa -Wl,-framework,Carbon -Wl,-framework,OpenGL \
|
||||
-Wl,-framework,CoreMidi -Wl,-framework,AudioUnit \
|
||||
-Wl,-framework,AudioToolbox -Wl,-framework,IOKit -Wl,-framework,AGL \
|
||||
-Wl,-framework,QuickTime -lm
|
||||
-Wl,-framework,QuickTime -lm \
|
||||
-Wl,-rpath -Wl,"@loader_path/../Frameworks"
|
||||
# We have SDLMain.m from the OSX SDL package in the Apple/ subdir:
|
||||
EDITOROBJS+=$(OBJ)/SDLMain.$o
|
||||
|
|
|
@ -20,12 +20,12 @@ fi
|
|||
|
||||
rev=`svn info | grep Revision | awk '{ print $2 }'`
|
||||
vc=svn
|
||||
if [ -z "$ref" ]; then
|
||||
if [ -z "$rev" ]; then
|
||||
vc=git
|
||||
rev=`git svn info | grep 'Revision' | awk '{ print $2 }'`
|
||||
fi
|
||||
|
||||
if [ -n "$ref" ]; then
|
||||
if [ -n "$rev" ]; then
|
||||
# throw the svn revision into a header. this is ugly.
|
||||
echo "const char *s_buildRev = \"r$rev\";" > source/rev.h
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue