From f7eea1de88d25476420dad2e8c7849b85ca5ec6b Mon Sep 17 00:00:00 2001 From: Matthew Burgess Date: Sun, 17 Feb 2008 19:58:48 +0000 Subject: [PATCH] Remove a now unnecessary sed in chapter 6's GCC instructions. Thanks to Greg Schafer for the report. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8480 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter01/changelog.xml | 6 ++++++ chapter06/gcc.xml | 8 -------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 7d38a6202..b00347e9c 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -39,6 +39,12 @@ 2008-02-17 + + [matthew] - Now that mktemp is installed by + Coreutils in chapter 5, there is no need to fix up GCC's + gccbug in chapter 6. Thanks to Greg Schafer for + the report. + [matthew] - Upgraded to Findutils-4.2.33. Fixes #2151. diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml index 5ea33fc97..d991fb4b8 100644 --- a/chapter06/gcc.xml +++ b/chapter06/gcc.xml @@ -64,14 +64,6 @@ sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in - GCC provides a gccbug script which detects at - compile time whether mktemp is present, and hardcodes the result in a test. - This will cause the script to fall back to using less random names for - temporary files. We will be installing mktemp later, so the following sed - will simulate its presence: - -sed -i 's/@have_mktemp_command@/yes/' gcc/gccbug.in - The GCC documentation recommends building GCC outside of the source directory in a dedicated build directory: