aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/glibc-inst.xml
diff options
context:
space:
mode:
authorGerard Beekmans <gerard@linuxfromscratch.org>2002-02-01 19:23:54 +0000
committerGerard Beekmans <gerard@linuxfromscratch.org>2002-02-01 19:23:54 +0000
commit94cb444490d189584869d6a42d442e847b75fb2d (patch)
tree2be2ab2f231dcd42871689afb17058001707ac2b /chapter06/glibc-inst.xml
parenta193394081dbb815bb2c47ae720019100cdcdf99 (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.xml4
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 &amp;&amp;
cd ../glibc-build &amp;&amp;
../glibc-&glibc-version;/configure --prefix=/usr \
&nbsp;&nbsp;&nbsp;--enable-add-ons --libexecdir=/usr/bin &amp;&amp;
-cp config.make config.make.backup &amp;&amp;
-sed 's/cross-compiling = yes/cross-compiling = no/' \
-&nbsp;&nbsp;&nbsp;config.make.backup &gt; config.make &amp;&amp;
+echo "cross-compiling = no" &gt; configparms &amp;&amp;
make &amp;&amp;
make install &amp;&amp;
make localedata/install-locales &amp;&amp;