summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2007-11-08 17:36:28 +0000
committerNick Mathewson <nickm@torproject.org>2007-11-08 17:36:28 +0000
commitcabcd62f38345d31a37b62b08fb166f34c8bc4f5 (patch)
tree946ad4d96d78c528e84c5fae9381cfb6ddd3c438 /autogen.sh
parent8fd2124ef9e12228f41023bcf02bdbdf6800a208 (diff)
downloadlibevent-cabcd62f38345d31a37b62b08fb166f34c8bc4f5.tar.gz
r16578@catbus: nickm | 2007-11-08 12:34:51 -0500
The == operator in shell is a bash-ism; do not use it in autogen.sh svn:r503
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 513e4be1..6d4275a6 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,7 +1,7 @@
#!/bin/sh
LIBTOOLIZE=libtoolize
SYSNAME=`uname`
-if [ "x$SYSNAME" == "xDarwin" ] ; then
+if [ "x$SYSNAME" = "xDarwin" ] ; then
LIBTOOLIZE=glibtoolize
fi
aclocal && \