From 4c506222d92a01bf6cb2481993577d979c4cc25c Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Thu, 20 Jun 2013 00:27:52 +0000 Subject: Don't assume $(uname) works; it's not a standard Bourne shell feature, and we only assume a Bourne-compatible shell. It's "OS X", not "OsX". svn path=/trunk/; revision=50072 --- autogen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 3f3e35a242..cbeb84af9a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -123,9 +123,9 @@ $AUTOMAKE --add-missing --gnu $am_opt || exit 1 echo $AUTOCONF $AUTOCONF || exit 1 -if [ $(uname) = Darwin ] ; then +if [ `uname -s` = Darwin ] ; then echo - echo "To configure Wireshark on OsX, you will need to type:" + echo "To configure Wireshark on OS X, you will need to type:" echo "export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/X11/lib/pkgconfig" echo "before you can run configure." fi -- cgit v1.2.1