From: <Mee...@us...> - 2008-08-21 18:55:50
|
Revision: 3039 http://sc2.svn.sourceforge.net/sc2/?rev=3039&view=rev Author: Meep-Eep Date: 2008-08-21 18:55:47 +0000 (Thu, 21 Aug 2008) Log Message: ----------- More portable parameter passing. Modified Paths: -------------- trunk/sc2/Makeproject trunk/sc2/build/unix/build.config Modified: trunk/sc2/Makeproject =================================================================== --- trunk/sc2/Makeproject 2008-08-21 18:52:48 UTC (rev 3038) +++ trunk/sc2/Makeproject 2008-08-21 18:55:47 UTC (rev 3039) @@ -8,9 +8,9 @@ uqm_OBJS=obj/release/ # Directory for object files uqm_NAME=uqm # File name of executable fi -uqm_CFLAGS="$uqm_CFLAGS -I src -I src/sc2code -I src/sc2code/libs" +uqm_CFLAGS="$uqm_CFLAGS -Isrc -Isrc/sc2code -Isrc/sc2code/libs" if [ "$uqm_HAVE_REGEX" = 0 ]; then - uqm_CFLAGS="$uqm_CFLAGS -I src/regex" + uqm_CFLAGS="$uqm_CFLAGS -Isrc/regex" fi # Stuff to install under the directory for libraries, as specified during Modified: trunk/sc2/build/unix/build.config =================================================================== --- trunk/sc2/build/unix/build.config 2008-08-21 18:52:48 UTC (rev 3038) +++ trunk/sc2/build/unix/build.config 2008-08-21 18:55:47 UTC (rev 3039) @@ -347,7 +347,7 @@ # Set the content dir CONTENTDIR="${INSTALL_SHAREDIR}uqm/content" - CFLAGS="$CFLAGS -I \"$BUILD_WORK\"" + CFLAGS="$CFLAGS -I\"$BUILD_WORK\"" # Export the HAVE_ symbols to config_unix.h, using config_unix.h.in # as template (or config_win.h/config_win.h.in). This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |