Index: compile.sh =================================================================== RCS file: /cvsroot/gomd/gomd/compile.sh,v retrieving revision 1.20 diff -u -r1.20 compile.sh --- compile.sh 2 Sep 2003 20:12:01 -0000 1.20 +++ compile.sh 2 Nov 2003 11:09:36 -0000 @@ -25,6 +25,9 @@ if [ "$1" = "--with-libgtop" ] then answer="y" + elif [ "$1" = "--without-libgtop" ] + then + answer="n" else echo -n "- Include extra infos support? (requires libgtop2 lib installed) [y/N]" read answer @@ -45,11 +48,11 @@ function stripBinaryFile() { progToStrip=$1 - echo "- Binary size before striping..." + echo "- Binary size before stripping..." echo " Size: $(ls -s $progToStrip | awk '{print $1}' | cut -f1 -d' ')KB" - echo "- Striping binary..." + echo "- Stripping binary..." strip $progToStrip - echo "- Binary size after striping..." + echo "- Binary size after stripping..." echo " Size: $(ls -s $progToStrip | awk '{print $1}' | cut -f1 -d' ')KB" } Index: install.sh =================================================================== RCS file: /cvsroot/gomd/gomd/install.sh,v retrieving revision 1.5 diff -u -r1.5 install.sh --- install.sh 21 Sep 2003 22:53:30 -0000 1.5 +++ install.sh 2 Nov 2003 11:09:37 -0000 @@ -37,11 +37,11 @@ function stripBinaryFile() { progToStrip=$1 - echo "- Binary size before striping..." + echo "- Binary size before stripping..." echo " Size: $(ls -s $progToStrip | awk '{print $1}' | cut -f1 -d' ')KB" - echo "- Striping binary..." + echo "- Stripping binary..." strip $progToStrip - echo "- Binary size after striping..." + echo "- Binary size after stripping..." echo " Size: $(ls -s $progToStrip | awk '{print $1}' | cut -f1 -d' ')KB" }