diff options
Diffstat (limited to 'chapter6/patch.sh')
-rw-r--r-- | chapter6/patch.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/chapter6/patch.sh b/chapter6/patch.sh index 42add5e..853e6b6 100644 --- a/chapter6/patch.sh +++ b/chapter6/patch.sh @@ -1,8 +1,8 @@ -#!/bin/bash -set -e - -./configure --prefix=/usr \ - --host="${LFS_TGT}" \ - --build="$(build-aux/config.guess)" && -make && -make DESTDIR="${LFS}" -j1 install +#!/bin/bash
+set -e
+
+./configure --prefix=/usr \
+ --host="${LFS_TGT}" \
+ --build="$(build-aux/config.guess)" &&
+make &&
+make DESTDIR="${LFS}" -j1 install
|