Bugzilla bug #60040: added missing double quotes ("") around the variable

($LIBIDL_CONFIG) after test -z.  r=cls@seawood.org.
Modified files: configure, configure.in
This commit is contained in:
wtc%netscape.com 2000-12-05 04:15:59 +00:00
parent 2b8c94e295
commit ef82d6ee57
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -5958,7 +5958,7 @@ test -n "$LIBIDL_CONFIG" && break
done
if test -z $LIBIDL_CONFIG; then
if test -z "$LIBIDL_CONFIG"; then
for ac_prog in $ORBIT_CONFIG orbit-config
do
# Extract the first word of "$ac_prog", so it can be a program name with args.

View File

@ -1665,7 +1665,7 @@ AC_ARG_WITH(libIDL,
AC_PATH_PROGS(LIBIDL_CONFIG, $LIBIDL_CONFIG libIDL-config)
dnl We don't have a libIDL config program. Look for orbit-config instead
if test -z $LIBIDL_CONFIG; then
if test -z "$LIBIDL_CONFIG"; then
AC_PATH_PROGS(ORBIT_CONFIG, $ORBIT_CONFIG orbit-config)
if test -n "$ORBIT_CONFIG"; then
SKIP_IDL_CHECK="yes"