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/patch.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'chapter6/patch.sh') diff --git a/chapter6/patch.sh b/chapter6/patch.sh index 55e45aa..fa1dac9 100644 --- a/chapter6/patch.sh +++ b/chapter6/patch.sh @@ -1,5 +1,7 @@ +#!/bin/bash + ./configure --prefix=/usr \ - --host=${LFS_TGT} \ - --build=$(build-aux/config.guess) && + --host="${LFS_TGT}" \ + --build="$(build-aux/config.guess)" && make && -make DESTDIR=${LFS} -j1 install +make DESTDIR="${LFS}" -j1 install -- cgit v1.2.3-54-g00ecf