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 /chapter8/tcl.sh | |
parent | 13f2c64995621d3180b468c4d525eff1eb8c9993 (diff) |
Make adjustments for Odroid N2+ aarch64 build.
Diffstat (limited to 'chapter8/tcl.sh')
-rw-r--r-- | chapter8/tcl.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chapter8/tcl.sh b/chapter8/tcl.sh index ba630df..244817a 100644 --- a/chapter8/tcl.sh +++ b/chapter8/tcl.sh @@ -1,4 +1,5 @@ #!/bin/bash +set -e tar -xf ../tcl"${VERSION}"-html.tar.gz --strip-components=1 && @@ -6,7 +7,7 @@ SRCDIR=$(pwd) cd unix || exit 1 ./configure --prefix=/usr \ --mandir=/usr/share/man \ - "$([ "$(uname -m)" = x86_64 ] && echo --enable-64bit)" && + "$([ "$(uname -m)" = x86_64 ] || [ "$(uname -m)" = aarch64 ] && echo --enable-64bit)" && make && |