diff options
author | Jeremy Huntwork <jhuntwork@linuxfromscratch.org> | 2007-09-16 00:21:26 +0000 |
---|---|---|
committer | Jeremy Huntwork <jhuntwork@linuxfromscratch.org> | 2007-09-16 00:21:26 +0000 |
commit | 2a7ac34a074d6f89c1385ba1ee542d9901fefd64 (patch) | |
tree | e8f84f74f81e53769190ede6ae3f81e8af03630a /chapter05/gzip.xml | |
parent | b0a4c9a47dadc3ab2c37a034866cb542f3fffa0b (diff) |
Upgrade to Glibc-2.6.1. Fixes #2018. Thanks to several people mentioned in the changelog.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8375 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/gzip.xml')
-rw-r--r-- | chapter05/gzip.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chapter05/gzip.xml b/chapter05/gzip.xml index a75659e2e..eb2c6a7c8 100644 --- a/chapter05/gzip.xml +++ b/chapter05/gzip.xml @@ -43,6 +43,15 @@ <sect2 role="installation"> <title>Installation of Gzip</title> + <para>The version of the function <quote>futimens</quote> used + by Gzip is incompatible with the version that current + Glibc provides, so we'll rename the function:</para> + +<screen><userinput>for file in gzip.c lib/utimens.{c,h} ; do \ + cp -v $file{,.orig} + sed 's/futimens/gl_&/' $file.orig > $file +done</userinput></screen> + <para>Prepare Gzip for compilation:</para> <screen><userinput>./configure --prefix=/tools</userinput></screen> |