diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2012-01-18 21:43:31 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2012-01-18 21:43:31 +0000 |
commit | e94698336f63bf135e7770bbf7fceff1e82a511b (patch) | |
tree | 8848c5a4f0e3b6d25dcf4f11ee7d546ae046a48f /libstdc++-v3 | |
parent | c1e0e1000ee6e808453703f37cf2033a69bee823 (diff) | |
download | gcc-e94698336f63bf135e7770bbf7fceff1e82a511b.zip gcc-e94698336f63bf135e7770bbf7fceff1e82a511b.tar.gz gcc-e94698336f63bf135e7770bbf7fceff1e82a511b.tar.bz2 |
acinclude (GLIBCXX_CONFIGURE_DOCBOOK): Fix quoting.
2012-01-18 Benjamin Kosnik <bkoz@redhat.com>
* acinclude (GLIBCXX_CONFIGURE_DOCBOOK): Fix quoting.
From-SVN: r183290
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/acinclude.m4 | 4 | ||||
-rwxr-xr-x | libstdc++-v3/configure | 4 |
3 files changed, 8 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 9de4523..f805fd9 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,9 @@ 2012-01-18 Benjamin Kosnik <bkoz@redhat.com> + * acinclude (GLIBCXX_CONFIGURE_DOCBOOK): Fix quoting. + +2012-01-18 Benjamin Kosnik <bkoz@redhat.com> + * configure.ac: Move epub checks... * acinclude (GLIBCXX_CONFIGURE_DOCBOOK): ...here, use test -f instead of AC_CHECK_FILES. diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index fd3ba96..3fc14c9 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -674,12 +674,12 @@ fi AC_MSG_CHECKING([for epub3 stylesheets for documentation creation]) glibcxx_epub_stylesheets=no if test x"$glibcxx_local_stylesheets" = x"yes"; then - if test -f ${XSL_STYLE_DIR}/epub3/chunk.xsl; then + if test -f "$XSL_STYLE_DIR/epub3/chunk.xsl"; then glibcxx_epub_stylesheets=yes fi fi AC_MSG_RESULT($glibcxx_epub_stylesheets) -AM_CONDITIONAL(BUILD_EPUB, test $glibcxx_epub_stylesheets= "yes") +AM_CONDITIONAL(BUILD_EPUB, test x"$glibcxx_epub_stylesheets" = x"yes") ]) diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 8ee0d24c..64f102b 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -65791,13 +65791,13 @@ fi $as_echo_n "checking for epub3 stylesheets for documentation creation... " >&6; } glibcxx_epub_stylesheets=no if test x"$glibcxx_local_stylesheets" = x"yes"; then - if test -f ${XSL_STYLE_DIR}/epub3/chunk.xsl; then + if test -f "$XSL_STYLE_DIR/epub3/chunk.xsl"; then glibcxx_epub_stylesheets=yes fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_epub_stylesheets" >&5 $as_echo "$glibcxx_epub_stylesheets" >&6; } - if test $glibcxx_epub_stylesheets= "yes"; then + if test x"$glibcxx_epub_stylesheets" = x"yes"; then BUILD_EPUB_TRUE= BUILD_EPUB_FALSE='#' else |