diff options
author | Mike Frysinger <vapier@gentoo.org> | 2013-08-25 16:01:52 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2013-08-25 16:02:09 -0400 |
commit | 8c12f01d07fd6a0eea9f012b5547abc6b0fc8b91 (patch) | |
tree | 25160ab37a76db74314c38ad8229c7d01949aaa0 | |
parent | 8fe89494e6516048759425ec30d8878a6233e00f (diff) | |
download | glibc-8c12f01d07fd6a0eea9f012b5547abc6b0fc8b91.tar.gz glibc-8c12f01d07fd6a0eea9f012b5547abc6b0fc8b91.tar.xz glibc-8c12f01d07fd6a0eea9f012b5547abc6b0fc8b91.zip |
configure: add missing quotes in $build_pt_chown test
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 42373adcbf..de2f3cc94d 100644 --- 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] diff --git a/configure b/configure index 1ee4c42003..afe7821057 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 769e8eff66..9172ad10e4 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 |