1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-09-02 16:01:20 +03:00

configure: add missing quotes in $build_pt_chown test

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger
2013-08-25 16:01:52 -04:00
parent 8fe89494e6
commit 8c12f01d07
3 changed files with 7 additions and 2 deletions

View File

@@ -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> 2013-08-23 Joseph Myers <joseph@codesourcery.com>
[BZ #15532] [BZ #15532]

2
configure vendored
View File

@@ -3722,7 +3722,7 @@ else
fi fi
if test $build_pt_chown = yes; then if test "$build_pt_chown" = yes; then
$as_echo "#define HAVE_PT_CHOWN 1" >>confdefs.h $as_echo "#define HAVE_PT_CHOWN 1" >>confdefs.h
fi fi

View File

@@ -359,7 +359,7 @@ AC_ARG_ENABLE([pt_chown],
[build_pt_chown=$enableval], [build_pt_chown=$enableval],
[build_pt_chown=no]) [build_pt_chown=no])
AC_SUBST(build_pt_chown) AC_SUBST(build_pt_chown)
if test $build_pt_chown = yes; then if test "$build_pt_chown" = yes; then
AC_DEFINE(HAVE_PT_CHOWN) AC_DEFINE(HAVE_PT_CHOWN)
fi fi