From a5da63a912956a502a5b4ecc4292b5a779245381 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Tue, 5 Oct 2010 22:16:10 +0200 Subject: [PATCH] make overriding more strict again --- misc/tools/xonotic-map-compiler-autobuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/tools/xonotic-map-compiler-autobuild b/misc/tools/xonotic-map-compiler-autobuild index 1194ee09..d366157d 100755 --- a/misc/tools/xonotic-map-compiler-autobuild +++ b/misc/tools/xonotic-map-compiler-autobuild @@ -172,13 +172,13 @@ buildthemap() t0=`date +%s` ( cd maps - sz=`grep '^size\>' "$M.mapinfo" 2>/dev/null || true` + sz=`grep '^size ' "$M.mapinfo" 2>/dev/null || true` if [ -n "$sz" ]; then - minimap_override="-minimap + -minmax ${sz#size}" + minimap_override="-minimap + -minmax ${sz#size }" else minimap_override= fi - ../../../misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $build_override $minimap_override > "$M.log" + ../../../misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override $build_override > "$M.log" ) t1=`date +%s` dt=$(($t1 - $t0)) -- 2.39.2