Changed ocean on worlmap2 to use tile #9 (water without path)
[supertux.git] / autogen.sh
index a0593e3..c8fcac7 100755 (executable)
@@ -10,11 +10,19 @@ aclocal -I mk/autoconf
 autoheader
 
 # generate Jamconfig.in
+cat > Jamconfig.in << __EOF__
+# the following unsets some stuff from Jambase
+CC = ;
+CFLAGS = ;
+LINK = ;
+LINKFLAGS = ;
+AR = ;
+# Configuration part (you can customize this)
+__EOF__
 autoconf --trace=AC_SUBST \
   | sed -e 's/configure.ac:[0-9]*:AC_SUBST:\([^:]*\).*/\1 ?= "@\1@" ;/g' \
-  > Jamconfig.in
-sed -e 's/.*BACKSLASH.*//' -i~ Jamconfig.in
-rm Jamconfig.in~
+  | sed -e 's/.*BACKSLASH.*//' \
+  >> Jamconfig.in
 echo 'INSTALL ?= "@INSTALL@" ;' >> Jamconfig.in
 echo 'JAMCONFIG_READ = yes ;' >> Jamconfig.in