From 590fa7ebfa5f3617de0b5675cb9e4b79f03779ac Mon Sep 17 00:00:00 2001 From: William Harrington Date: Mon, 22 Mar 2021 13:13:41 -0500 Subject: Remove interpreter from scripts that are sourced. Remove executable bits are required. --- chapter6/xz.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'chapter6/xz.sh') diff --git a/chapter6/xz.sh b/chapter6/xz.sh index 64832ad..7515350 100644 --- a/chapter6/xz.sh +++ b/chapter6/xz.sh @@ -1,5 +1,3 @@ -#!/bin/bash - ./configure --prefix=/usr \ --host=${LFS_TGT} \ --build=$(build-aux/config.guess) \ @@ -9,4 +7,4 @@ make && make DESTDIR=${LFS} -j1 install mv -v ${LFS}/usr/bin/{lzma,unlzma,lzcat,xz,unxz,xzcat} ${LFS}/bin && mv -v ${LFS}/usr/lib/liblzma.so.* ${LFS}/lib && -ln -svf ../../lib/$(readlink ${LFS}/usr/lib/liblzma.so) ${LFS}/usr/lib/liblzma.so \ No newline at end of file +ln -svf ../../lib/$(readlink ${LFS}/usr/lib/liblzma.so) ${LFS}/usr/lib/liblzma.so -- cgit v1.2.3-54-g00ecf