From e4487709ac27d80179c2a685b91ed023ca178021 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Tue, 23 Mar 2021 13:14:12 -0500 Subject: Clean up chapter6 scripts. --- chapter6/tar.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'chapter6/tar.sh') 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 -- cgit v1.2.3-54-g00ecf