From: Mike Frysinger Date: Sun, 25 Aug 2013 20:01:52 +0000 (-0400) Subject: configure: add missing quotes in $build_pt_chown test X-Git-Tag: glibc-2.19~881 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8c12f01d07fd6a0eea9f012b5547abc6b0fc8b91;p=thirdparty%2Fglibc.git configure: add missing quotes in $build_pt_chown test Signed-off-by: Mike Frysinger --- diff --git a/ChangeLog b/ChangeLog index 42373adcbfd..de2f3cc94de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-08-25 Mike Frysinger + + * configure.ac: Quote $build_pt_chown test. + * configure: Regenerated. + 2013-08-23 Joseph Myers [BZ #15532] diff --git a/configure b/configure index 1ee4c42003e..afe78210573 100755 --- a/configure +++ b/configure @@ -3722,7 +3722,7 @@ else fi -if test $build_pt_chown = yes; then +if test "$build_pt_chown" = yes; then $as_echo "#define HAVE_PT_CHOWN 1" >>confdefs.h fi diff --git a/configure.in b/configure.in index 769e8eff661..9172ad10e40 100644 --- a/configure.in +++ b/configure.in @@ -359,7 +359,7 @@ AC_ARG_ENABLE([pt_chown], [build_pt_chown=$enableval], [build_pt_chown=no]) AC_SUBST(build_pt_chown) -if test $build_pt_chown = yes; then +if test "$build_pt_chown" = yes; then AC_DEFINE(HAVE_PT_CHOWN) fi