From: Bill Erickson Date: Sun, 20 Nov 2011 19:16:34 +0000 (-0500) Subject: Default to 'libtoolize' for all OSes that don't specify X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ac5bbdecf1ef22e5e4ef2990512d5f8c59b72b8b;p=working%2FOpenSRF.git Default to 'libtoolize' for all OSes that don't specify Otherwise, opensrf can only be built on Darwin and Linux. Signed-off-by: Bill Erickson --- diff --git a/autogen.sh b/autogen.sh index ff28cf2..8dec8df 100755 --- a/autogen.sh +++ b/autogen.sh @@ -4,7 +4,7 @@ OS=`uname` if [ "$OS" = "Darwin" ]; then : ${LIBTOOLIZE=glibtoolize} -elif [ "$OS" = "Linux" ]; then +else : ${LIBTOOLIZE=libtoolize} fi