From 5a0d671f0e05af014c55447e28e8b1b8be4a84ee Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Thu, 20 Sep 2007 18:26:56 +0000 Subject: r15219@catbus: nickm | 2007-09-20 14:17:32 -0400 Apply patch from Trond Norbye with recommendations from Magne Mahre and Hannah Schroeter: make autogen.sh work on systems where /bin/sh is not bash. svn:r444 --- autogen.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 5c04a217..513e4be1 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,6 +1,7 @@ #!/bin/sh LIBTOOLIZE=libtoolize -if [ "$(uname)" == "Darwin" ] ; then +SYSNAME=`uname` +if [ "x$SYSNAME" == "xDarwin" ] ; then LIBTOOLIZE=glibtoolize fi aclocal && \ -- cgit v1.2.1