From 316e76ac8216bc8eafdbd0224d497c994c1434b5 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Thu, 24 Jun 2010 15:53:02 +0200 Subject: [PATCH] in .options files, change syntax to allow settings on different lines. Syntax rules now are: any line starting with - specifies options any other line is a comment anything from a # in a line to the end of the line is a comment (Bad) Example: -bsp -samplesize 16 # do not use default options -light + -fast # this looks good too, default options are still used -vis + -minimap + Version: 1 --- misc/tools/xonotic-map-compiler-autobuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tools/xonotic-map-compiler-autobuild b/misc/tools/xonotic-map-compiler-autobuild index 3f411004..6405eb2b 100755 --- a/misc/tools/xonotic-map-compiler-autobuild +++ b/misc/tools/xonotic-map-compiler-autobuild @@ -123,7 +123,7 @@ buildthemap() fi ( cd maps - ../../../misc/tools/xonotic-map-compiler "$M" `head -n 1 "$M.map.options"` 2>&1 | tee "$M.log" + ../../../misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` 2>&1 | tee "$M.log" ) zip -9r "$bspdir/$M-$blobhash.pk3" "maps/$M.bsp" "maps/$M.log" "maps/$M/" "maps/$M.lin" "gfx/${M}_mini.tga" ln -snf "../$M-$blobhash.pk3" "$bspdir/latest/$M.pk3" # from ALL branches, so beware! -- 2.39.2