diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-19 02:01:33 +0000 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-19 02:01:33 +0000 |
commit | ca7ec24a78f9bd8824da23be1c24a98a3c764f5f (patch) | |
tree | f8b56862b35c0765024a081f3814043d6b172453 /chapter6/coreutils.sh | |
parent | 13f2c64995621d3180b468c4d525eff1eb8c9993 (diff) |
Make adjustments for Odroid N2+ aarch64 build.
Diffstat (limited to 'chapter6/coreutils.sh')
-rw-r--r-- | chapter6/coreutils.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chapter6/coreutils.sh b/chapter6/coreutils.sh index 536fa52..86eaf5f 100644 --- a/chapter6/coreutils.sh +++ b/chapter6/coreutils.sh @@ -1,4 +1,9 @@ #!/bin/bash +set -e + +if [[ "$(uname -m)" = aarch64 ]]; then + patch -Np1 -i ../coreutils-"${VERSION}"-aarch64_fixes-1.patch +fi ./configure --prefix=/usr \ --host="${LFS_TGT}" \ |