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
This commit is contained in:
Nick Mathewson 2007-11-08 17:36:28 +00:00
parent 8fd2124ef9
commit cabcd62f38
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -1,7 +1,7 @@
#!/bin/sh
LIBTOOLIZE=libtoolize
SYSNAME=`uname`
if [ "x$SYSNAME" == "xDarwin" ] ; then
if [ "x$SYSNAME" = "xDarwin" ] ; then
LIBTOOLIZE=glibtoolize
fi
aclocal && \