From: Jim Meyering Date: Tue, 27 Jun 2000 20:21:04 +0000 (+0000) Subject: (_AC_LIBOBJ_GETLOADAVG): Put quotes around use of X-Git-Tag: autoconf-2.50~793 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7763c2db35cd14f4c0ca70aa38e2d31024657163;p=thirdparty%2Fautoconf.git (_AC_LIBOBJ_GETLOADAVG): Put quotes around use of `$ac_cv_lib_elf_elf_begin', since that variable may not be defined. From Volker Borchert. --- diff --git a/acspecific.m4 b/acspecific.m4 index 5c5bbc4d3..67dad9d1e 100644 --- a/acspecific.m4 +++ b/acspecific.m4 @@ -953,7 +953,7 @@ AC_CHECK_FUNCS(setlocale) # We cannot check for , because Solaris 2 does not use dwarf (it # uses stabs), but it is still SVR4. We cannot check for because # Irix 4.0.5F has the header but not the library. -if test $ac_have_func = no && test $ac_cv_lib_elf_elf_begin = yes; then +if test $ac_have_func = no && test "$ac_cv_lib_elf_elf_begin" = yes; then ac_have_func=yes AC_DEFINE(SVR4, 1, [Define on System V Release 4.]) fi diff --git a/lib/autoconf/specific.m4 b/lib/autoconf/specific.m4 index 5c5bbc4d3..67dad9d1e 100644 --- a/lib/autoconf/specific.m4 +++ b/lib/autoconf/specific.m4 @@ -953,7 +953,7 @@ AC_CHECK_FUNCS(setlocale) # We cannot check for , because Solaris 2 does not use dwarf (it # uses stabs), but it is still SVR4. We cannot check for because # Irix 4.0.5F has the header but not the library. -if test $ac_have_func = no && test $ac_cv_lib_elf_elf_begin = yes; then +if test $ac_have_func = no && test "$ac_cv_lib_elf_elf_begin" = yes; then ac_have_func=yes AC_DEFINE(SVR4, 1, [Define on System V Release 4.]) fi