diff options
author | Alexandre Oliva <oliva@dcc.unicamp.br> | 1998-10-30 05:44:07 +0000 |
---|---|---|
committer | Alexandre Oliva <oliva@gcc.gnu.org> | 1998-10-30 05:44:07 +0000 |
commit | de82584de7d8b294f3e664f266ec82b437b99792 (patch) | |
tree | 335fbeda72d66c981a7199c29e027fc4314225ba /gcc | |
parent | d65ae0584b97a5f550427c22bf87e5a46ff94a2e (diff) | |
download | gcc-de82584de7d8b294f3e664f266ec82b437b99792.zip gcc-de82584de7d8b294f3e664f266ec82b437b99792.tar.gz gcc-de82584de7d8b294f3e664f266ec82b437b99792.tar.bz2 |
configure.in (gxx_include_dir): bitten by autoconf quoting characters :-(
* configure.in (gxx_include_dir): bitten by autoconf quoting
characters :-(
* configure: rebuilt
From-SVN: r23453
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rwxr-xr-x | gcc/configure | 2 | ||||
-rw-r--r-- | gcc/configure.in | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0b1b47b..66b2a71 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Fri Oct 30 11:39:47 1998 Alexandre Oliva <oliva@dcc.unicamp.br> + + * configure.in (gxx_include_dir): bitten by autoconf quoting + characters :-( + * configure: rebuilt + Fri Oct 30 10:43:29 1998 Andreas Schwab <schwab@issan.cs.uni-dortmund.de> * configure.in: Ignore non-absolute value in $AS. diff --git a/gcc/configure b/gcc/configure index 2f3f779..8f6e4a4 100755 --- a/gcc/configure +++ b/gcc/configure @@ -735,7 +735,7 @@ if test x${gxx_include_dir} = x; then gxx_include_dir='${libsubdir}/include/g++' else topsrcdir=${srcdir}/.. . ${srcdir}/../config.if - gxx_include_dir="\$(libsubdir)/\$(unlibsubdir)/..\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/^/*|/..|g'\`/include/g++"-${libstdcxx_interface} + gxx_include_dir="\$(libsubdir)/\$(unlibsubdir)/..\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/[^/]*|/..|g'\`/include/g++"-${libstdcxx_interface} fi fi diff --git a/gcc/configure.in b/gcc/configure.in index 5fd132a..eaed15f 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -167,7 +167,9 @@ if test x${gxx_include_dir} = x; then gxx_include_dir='${libsubdir}/include/g++' else topsrcdir=${srcdir}/.. . ${srcdir}/../config.if +changequote(<<, >>)dnl gxx_include_dir="\$(libsubdir)/\$(unlibsubdir)/..\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/[^/]*|/..|g'\`/include/g++"-${libstdcxx_interface} +changequote([, ])dnl fi fi |