mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
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:
parent
2b8c94e295
commit
ef82d6ee57
2
configure
vendored
2
configure
vendored
@ -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.
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user