Remove hardcoded paths from GCC's MPFR-related configure switches. Fixes #2948.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9645 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Matthew Burgess 2011-10-28 19:42:21 +00:00
parent 9fb74db247
commit 2ce327ccde
4 changed files with 17 additions and 6 deletions

View File

@ -36,6 +36,17 @@
</listitem>
-->
<listitem>
<para>2011-10-28</para>
<itemizedlist>
<listitem>
<para>[matthew] - Remove hardcoded paths from GCC's MPFR-related
configure switches. Fixes
<ulink url="&lfs-ticket-root;2948">#2948</ulink>.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>2011-10-20</para>
<itemizedlist>

View File

@ -78,8 +78,8 @@ cd ../gcc-build</userinput></screen>
--disable-libgomp --disable-libquadmath \
--disable-target-libiberty --disable-target-zlib \
--enable-languages=c --without-ppl --without-cloog \
--with-mpfr-include=$LFS/sources/gcc-&gcc-version;/mpfr/src \
--with-mpfr-lib=$LFS/sources/gcc-build/mpfr/src/.libs</userinput></screen>
--with-mpfr-include=$(pwd)/../gcc-&gcc-version;/mpfr/src \
--with-mpfr-lib=$(pwd)/mpfr/src/.libs</userinput></screen>
<variablelist>
<title>The meaning of the configure options:</title>

View File

@ -158,8 +158,8 @@ cd ../gcc-build</userinput></screen>
--disable-libstdcxx-pch --disable-multilib \
--disable-bootstrap --disable-libgomp \
--without-ppl --without-cloog \
--with-mpfr-include=$LFS/sources/gcc-&gcc-version;/mpfr/src \
--with-mpfr-lib=$LFS/sources/gcc-build/mpfr/src/.libs</userinput></screen>
--with-mpfr-include=$(pwd)/../gcc-&gcc-version;/mpfr/src \
--with-mpfr-lib=$(pwd)/mpfr/src/.libs</userinput></screen>
<variablelist>
<title>The meaning of the new configure options:</title>

View File

@ -1,5 +1,5 @@
<!ENTITY version "SVN-20111020">
<!ENTITY releasedate "Oct 20, 2011">
<!ENTITY version "SVN-20111028">
<!ENTITY releasedate "Oct 28, 2011">
<!ENTITY copyrightdate "1999-2011"><!-- jhalfs needs a literal dash, not &ndash; -->
<!ENTITY milestone "7.0">
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->