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