summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfrostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7>2004-07-23 21:17:04 +0000
committerfrostycoolslug <frostycoolslug@e03df62e-2008-0410-955e-edbf42e46eb7>2004-07-23 21:17:04 +0000
commita093aeddff84f4f3bdc61589876980d8b4e851c7 (patch)
tree5a4e09f3c6e77f55e6df6ea08268736a518c76be
parent6a2a049d38203cf79b0132b4fcef1e6609e3929f (diff)
Fixed freebsd -n bug.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@846 e03df62e-2008-0410-955e-edbf42e46eb7
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 11c146085..20c938b17 100755
--- a/configure
+++ b/configure
@@ -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"