mirror of git://gcc.gnu.org/git/gcc.git
acinclude (GLIBCXX_CONFIGURE_DOCBOOK): Fix quoting.
2012-01-18 Benjamin Kosnik <bkoz@redhat.com> * acinclude (GLIBCXX_CONFIGURE_DOCBOOK): Fix quoting. From-SVN: r183290
This commit is contained in:
parent
c1e0e1000e
commit
e94698336f
|
@ -1,3 +1,7 @@
|
||||||
|
2012-01-18 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
|
* acinclude (GLIBCXX_CONFIGURE_DOCBOOK): Fix quoting.
|
||||||
|
|
||||||
2012-01-18 Benjamin Kosnik <bkoz@redhat.com>
|
2012-01-18 Benjamin Kosnik <bkoz@redhat.com>
|
||||||
|
|
||||||
* configure.ac: Move epub checks...
|
* configure.ac: Move epub checks...
|
||||||
|
|
|
@ -674,12 +674,12 @@ fi
|
||||||
AC_MSG_CHECKING([for epub3 stylesheets for documentation creation])
|
AC_MSG_CHECKING([for epub3 stylesheets for documentation creation])
|
||||||
glibcxx_epub_stylesheets=no
|
glibcxx_epub_stylesheets=no
|
||||||
if test x"$glibcxx_local_stylesheets" = x"yes"; then
|
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
|
glibcxx_epub_stylesheets=yes
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
AC_MSG_RESULT($glibcxx_epub_stylesheets)
|
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")
|
||||||
|
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
|
@ -65791,13 +65791,13 @@ fi
|
||||||
$as_echo_n "checking for epub3 stylesheets for documentation creation... " >&6; }
|
$as_echo_n "checking for epub3 stylesheets for documentation creation... " >&6; }
|
||||||
glibcxx_epub_stylesheets=no
|
glibcxx_epub_stylesheets=no
|
||||||
if test x"$glibcxx_local_stylesheets" = x"yes"; then
|
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
|
glibcxx_epub_stylesheets=yes
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_epub_stylesheets" >&5
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $glibcxx_epub_stylesheets" >&5
|
||||||
$as_echo "$glibcxx_epub_stylesheets" >&6; }
|
$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_TRUE=
|
||||||
BUILD_EPUB_FALSE='#'
|
BUILD_EPUB_FALSE='#'
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue