summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-02-13 20:49:32 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-02-13 20:49:32 (GMT)
commitaa0cd10cf2375ac13fc386708e6acef883e5b947 (patch)
tree8884ef3e2865b6d8df137ac702cd646a8cb9a527 /configure.in
parent950e10865307b4cb0dabd87f73807b4f56d884a1 (diff)
downloadhdf5-aa0cd10cf2375ac13fc386708e6acef883e5b947.zip
hdf5-aa0cd10cf2375ac13fc386708e6acef883e5b947.tar.gz
hdf5-aa0cd10cf2375ac13fc386708e6acef883e5b947.tar.bz2
[svn-r4955]
Purpose: Bug Fix Description: On some systems, doing the shell command: if test -z $DEBUG_PKG; then doesn't work if $DEBUG_PKG is null.. Solution: Changed to "if test "X$DEBUG_PKG" = "X"; then" which will do the same thing but without the error... Platforms tested: Linux
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index cb92708..99116d3 100644
--- a/configure.in
+++ b/configure.in
@@ -1817,7 +1817,7 @@ PRINT_N " Debug Mode"
if test "X$DEBUG_PKG" = "X$all_packages"; then
PRINT "All"
-elif test -z $DEBUG_PKG; then
+elif test "X$DEBUG_PKG" = "X"; then
PRINT "None"
else
PRINT $DEBUG_PKG