From cabcd62f38345d31a37b62b08fb166f34c8bc4f5 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 8 Nov 2007 17:36:28 +0000 Subject: [PATCH] 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 --- ChangeLog | 1 + autogen.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 before #include . 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 && \ -- 2.40.0