diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-23 13:14:22 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-23 13:14:22 -0500 |
commit | 887bf450c01c511a3f6d048d3db78e8edfb21e8a (patch) | |
tree | 9664bce126d537bd524bacdf0e22d2b6d1e419b9 /chapter5/binutils.sh | |
parent | e4487709ac27d80179c2a685b91ed023ca178021 (diff) |
Cleanup chapter5 scripts.
Diffstat (limited to 'chapter5/binutils.sh')
-rw-r--r-- | chapter5/binutils.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/chapter5/binutils.sh b/chapter5/binutils.sh index c77a576..2d9da5b 100644 --- a/chapter5/binutils.sh +++ b/chapter5/binutils.sh @@ -1,9 +1,11 @@ +#!/bin/bash + mkdir build -cd build +cd build || exit 1 -../configure --prefix=${LFS}/tools \ - --with-sysroot=${LFS} \ - --target=${LFS_TGT} \ +../configure --prefix="${LFS}"/tools \ + --with-sysroot="${LFS}" \ + --target="${LFS_TGT}" \ --disable-nls \ --disable-werror && make && |