diff options
author | frostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-07-23 21:17:04 +0000 |
---|---|---|
committer | frostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-07-23 21:17:04 +0000 |
commit | a093aeddff84f4f3bdc61589876980d8b4e851c7 (patch) | |
tree | 5a4e09f3c6e77f55e6df6ea08268736a518c76be | |
parent | 6a2a049d38203cf79b0132b4fcef1e6609e3929f (diff) |
Fixed freebsd -n bug.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@846 e03df62e-2008-0410-955e-edbf42e46eb7
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -16,6 +16,7 @@ GCCVER=`gcc -dumpversion | cut -c 1` CONFIG_DIR=$ME/conf MODULE_DIR=$ME/modules BINARY_DIR=$ME/bin +INSTALL=`which install` OPTIMITEMP=0 OPTIMISATI="-g" MAX_CLIENT_T=`ulimit -n` @@ -83,7 +84,7 @@ fi c="" n="" -if [ "`eval echo -n 'a'`" = "-n a" ] ; then +if [ "`eval echo -e -n 'a'`" = "-n a" ] ; then c="\c" else n="-n" |