aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2007-05-22 13:16:36 +0000
committerJörg Mayer <jmayer@loplof.de>2007-05-22 13:16:36 +0000
commite14af5a5774905c107c8a2428e141cd89e07b13f (patch)
tree15f8a9944fb13ce0afce0610e8953e5faf1c448c
parente531c23af490e6d0fa0edf6ce8c77e9108957bf1 (diff)
Make sure we compare against something ("") in case
GTK_CONFIG is empty. svn path=/trunk/; revision=21884
-rwxr-xr-xpackaging/svr4/checkinstall.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/svr4/checkinstall.in b/packaging/svr4/checkinstall.in
index 6777fcee29..34cd46ba82 100755
--- a/packaging/svr4/checkinstall.in
+++ b/packaging/svr4/checkinstall.in
@@ -18,7 +18,7 @@ platform=`uname -p`
expected_platform="@host_cpu@"
-if [ -x $GTK_CONFIG ] ; then
+if [ -x "$GTK_CONFIG" ] ; then
# First try the GTK location that was used to build wireshark. This
# is probably the safest bet.
gtk_installed=`$GTK_CONFIG --version`