From df9e673119c5ebd901efe7ee7b3d2f82d3c340c9 Mon Sep 17 00:00:00 2001 From: Tom Reynolds Date: Sun, 22 Jul 2012 12:31:17 +0000 Subject: [PATCH] add some of the missing localization keys to english.lng make build-mg.sh use C locale for output so we'll know what's going on --- build-mg.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build-mg.sh b/build-mg.sh index cc1a38d0..d40ba1dd 100755 --- a/build-mg.sh +++ b/build-mg.sh @@ -4,6 +4,7 @@ # Written by Mark Vejvoda # Copyright (c) 2011 Mark Vejvoda under GNU GPL v3.0+ +LANG=C NUMCORES=`cat /proc/cpuinfo | grep -cE '^processor'` mkdir -p build @@ -30,5 +31,5 @@ echo 'BUILD COMPLETE.' echo '' echo 'To launch MegaGlest from the current directory, use:' echo ' mk/linux/megaglest --ini-path=mk/linux/ --data-path=mk/linux/' -echo 'To launch MegaGlest from within the build directory, use:' -echo ' ../mk/linux/megaglest --ini-path=../mk/linux/ --data-path=../mk/linux/' +echo 'Or change into mk/linux and run it from there:' +echo ' ./megaglest --ini-path=./ --data-path=./'