summaryrefslogtreecommitdiff
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
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
-rw-r--r--ChangeLog1
-rwxr-xr-xautogen.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index fbdb93ff..aea092a3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -46,4 +46,5 @@ Changes in current version:
o Do not require #include <sys/types.h> before #include <event.h>.
o Add new evutil_timer* functions to wrap (or replace) the regular timeval manipulation functions.
o Fix many build issues when using the Microsoft C compiler.
+ o Remove a bash-ism in autogen.sh
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 && \