diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2002-02-01 19:23:54 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2002-02-01 19:23:54 +0000 |
commit | 94cb444490d189584869d6a42d442e847b75fb2d (patch) | |
tree | 2be2ab2f231dcd42871689afb17058001707ac2b /chapter06/glibc-inst.xml | |
parent | a193394081dbb815bb2c47ae720019100cdcdf99 (diff) |
instead of sed'ing the config.make file, create a configparms file with
'cross-compiling = no' as contents
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1524 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/glibc-inst.xml')
-rw-r--r-- | chapter06/glibc-inst.xml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/chapter06/glibc-inst.xml b/chapter06/glibc-inst.xml index fa01b0969..0e54cb85b 100644 --- a/chapter06/glibc-inst.xml +++ b/chapter06/glibc-inst.xml @@ -29,9 +29,7 @@ mkdir ../glibc-build && cd ../glibc-build && ../glibc-&glibc-version;/configure --prefix=/usr \ --enable-add-ons --libexecdir=/usr/bin && -cp config.make config.make.backup && -sed 's/cross-compiling = yes/cross-compiling = no/' \ - config.make.backup > config.make && +echo "cross-compiling = no" > configparms && make && make install && make localedata/install-locales && |