diff options
author | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-29 22:11:48 +0000 |
---|---|---|
committer | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-29 22:11:48 +0000 |
commit | a425f86cca8d1562eab0d4365b14ac01203f761b (patch) | |
tree | d86a589f7eb9035d49abf6e230ba21cafb35be6d | |
parent | 310c6e60a19c03d40fc96ce8bdeed6c208d362ac (diff) |
Break up sed command.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2155 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter05/gcc-inst.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chapter05/gcc-inst.xml b/chapter05/gcc-inst.xml index b09ee4cdb..150faca41 100644 --- a/chapter05/gcc-inst.xml +++ b/chapter05/gcc-inst.xml @@ -16,7 +16,8 @@ been warned.</para> <para><screen><userinput>patch -Np1 -i ../gcc-&gcc-patch-version;.patch && cp gcc/Makefile.in{,.backup} && -sed '/$(SHELL) .\/fixinc.sh/d' gcc/Makefile.in.backup > gcc/Makefile.in && +sed '/$(SHELL) .\/fixinc.sh/d' \ + gcc/Makefile.in.backup > gcc/Makefile.in && mkdir ../gcc-build && cd ../gcc-build && ../gcc-&gcc-version;/configure --prefix=/static --enable-languages=c \ |