Sfoglia il codice sorgente

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
Matthew Burgess 13 anni fa
parent
commit
2ce327ccde
4 ha cambiato i file con 17 aggiunte e 6 eliminazioni
  1. 11 0
      chapter01/changelog.xml
  2. 2 2
      chapter05/gcc-pass1.xml
  3. 2 2
      chapter05/gcc-pass2.xml
  4. 2 2
      general.ent

+ 11 - 0
chapter01/changelog.xml

@@ -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>

+ 2 - 2
chapter05/gcc-pass1.xml

@@ -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>

+ 2 - 2
chapter05/gcc-pass2.xml

@@ -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>

+ 2 - 2
general.ent

@@ -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}]" -->