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