diff options
author | Michael Tüxen <tuexen@fh-muenster.de> | 2004-07-03 21:35:30 +0000 |
---|---|---|
committer | Michael Tüxen <tuexen@fh-muenster.de> | 2004-07-03 21:35:30 +0000 |
commit | 146659be8d5386346b6ddef1f56dc0dffc179262 (patch) | |
tree | 638c89c32ce7ce61ec2ad3f9d14339a531316ae7 /aclocal-flags | |
parent | 2648c77e57f5704048da1bc967dc1061c649cb6e (diff) | |
download | wireshark-146659be8d5386346b6ddef1f56dc0dffc179262.tar.gz wireshark-146659be8d5386346b6ddef1f56dc0dffc179262.tar.bz2 wireshark-146659be8d5386346b6ddef1f56dc0dffc179262.zip |
Suppress warning in case of gtk-config is not installed.
svn path=/trunk/; revision=11301
Diffstat (limited to 'aclocal-flags')
-rwxr-xr-x | aclocal-flags | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/aclocal-flags b/aclocal-flags index a10531aded..ca21fd4d9b 100755 --- a/aclocal-flags +++ b/aclocal-flags @@ -21,7 +21,7 @@ # "aclocal" will look in that directory twice, and get well and truly # confused, reporting a ton of duplicate macro definitions.) # -# $Id: aclocal-flags,v 1.8 2004/03/04 08:25:23 jmayer Exp $ +# $Id: aclocal-flags,v 1.9 2004/07/03 21:35:30 tuexen Exp $ # # @@ -32,7 +32,7 @@ aclocal_dir=`aclocal --print-ac-dir` # # And where do we want to make sure it looks? # -gtk_prefix=`gtk-config --prefix` +gtk_prefix=`gtk-config --prefix 2>/dev/null` if [ -z "$gtk_prefix" ] then |