diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-18 12:10:31 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-18 12:10:31 -0500 |
commit | 3da09fc4dbf0cf606485bef3a50d0e2264e1bc1c (patch) | |
tree | 2df132e1dbefe3fc1da4ebade9cc95c29d786aba /chapter5/binutils.sh | |
parent | dc47dbbc2f82451837a0ff7df3985e09a5469493 (diff) |
Add braces to LFS variable.
Diffstat (limited to 'chapter5/binutils.sh')
-rw-r--r-- | chapter5/binutils.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter5/binutils.sh b/chapter5/binutils.sh index 870d34a..68da871 100644 --- a/chapter5/binutils.sh +++ b/chapter5/binutils.sh @@ -3,9 +3,9 @@ mkdir build cd build -../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 && |