Trond Norbye wrote:
/bin/sh does not recognize == as a valid test operator, but /bin/bash does...

Changing to /bin/bash isn't a good solution, since you're not guaranteed to have bash on every system (nor that it's in /bin)

I would suggest to have the script Bourne shell compliant instead :

SYSNAME=`uname`
if [ "$SYSNAME" = "Darwin" ] ; then
  LIBTOOLIZE=glibtoolize
fi


--Magne
_______________________________________________
Libevent-users mailing list
Libevent-users@monkey.org
http://monkey.org/mailman/listinfo/libevent-users

Reply via email to