diff options
author | frostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7> | 2003-07-27 21:14:20 +0000 |
---|---|---|
committer | frostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7> | 2003-07-27 21:14:20 +0000 |
commit | b98ff839df33058544bc00f68088cb351c8dd918 (patch) | |
tree | 69a2178a76f93a61ffbc9bd2339579f186e49056 /configure | |
parent | 7da209d2157cd8a32f015c93e5b835607163a53b (diff) |
Fixed one or 2 small bugs.. :p
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@180 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 20 |
1 files changed, 9 insertions, 11 deletions
@@ -72,7 +72,7 @@ if [ -z $MAX_CLIENT ] ; then fi if [ "$1" = "-clean" -o "$2" = "-clean" ] ; then - CLEAN="1" + `rm -rf config.cache` fi if [ -e "config.cache" -a -z "$CLEAN" ] ; then @@ -198,13 +198,13 @@ echo "" cheeze=0 echo -e "Maximum number of clients at any one time (\033[1;32m1-$MAX_CLIENT\033[0;37m)?" - while [ $cheeze -eq 0 ] ; do + while [ "$cheeze" -eq "0" ] ; do echo -e $n "[\033[1;32m$MAX_CLIENT\033[0;37m] -> $c" read cc if [ "$cc" ] ; then case "$cc" in [0-9]*) - if [ $cc > $MAX_CLIENT ] ; then + if [ "$cc" > "$MAX_CLIENT" ] ; then ASK=1 else MAX_CLIENT=$cc @@ -220,9 +220,9 @@ echo "" else cheeze=1 fi - if [ $cheeze -eq 1 ] ; then - if [ -z $SCAN_FAILED ] ; then - if [ $ASK -eq 1 ] ; then + if [ "$cheeze" -eq "1" ] ; then + if [ -z "$SCAN_FAILED" ] ; then + if [ "$ASK" -eq "1" ] ; then echo "WARNING: Our scans have indicated that you are" echo " Attempting to use more sockets than" echo " there are avaliable, do you wish to" @@ -237,8 +237,6 @@ echo "" echo "Please Enter the Correct number of sockets:" fi fi - else - MAX_CLIENT=$cc fi fi done @@ -248,7 +246,7 @@ echo "" cheeze=0 echo -e "What is the Maximum length of nicknames?" - while [ $cheeze -eq 0 ] ; do + while [ "$cheeze" -eq "0" ] ; do echo -e $n "[\033[1;32m$NICK_LENGT\033[0;37m] -> $c" read cc if [ "$cc" ] ; then @@ -273,7 +271,7 @@ echo "" cheeze=0 echo -e "What is the Maximum length of channel names?" - while [ $cheeze -eq 0 ] ; do + while [ "$cheeze" -eq "0" ] ; do echo -e $n "[\033[1;32m$MAX_CHANNE\033[0;37m] -> $c" read cc if [ "$cc" ] ; then @@ -298,7 +296,7 @@ echo "" cheeze=0 echo -e "What is the Maximum number of mode changes in one line?" - while [ $cheeze -eq 0 ] ; do + while [ "$cheeze" -eq "0" ] ; do echo -e $n "[\033[1;32m$MAXI_MODES\033[0;37m] -> $c" read cc if [ "$cc" ] ; then |