configure: add missing quotes in $build_pt_chown test
authorMike Frysinger <vapier@gentoo.org>
Sun, 25 Aug 2013 20:01:52 +0000 (16:01 -0400)
committerMike Frysinger <vapier@gentoo.org>
Sun, 25 Aug 2013 20:02:09 +0000 (16:02 -0400)
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
ChangeLog
configure
configure.in

index 42373ad..de2f3cc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-08-25  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure.ac: Quote $build_pt_chown test.
+       * configure: Regenerated.
+
 2013-08-23  Joseph Myers  <joseph@codesourcery.com>
 
        [BZ #15532]
index 1ee4c42..afe7821 100755 (executable)
--- 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
index 769e8ef..9172ad1 100644 (file)
@@ -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