aboutsummaryrefslogtreecommitdiffstats
path: root/chapter8/expect.sh
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-04-19 02:01:33 +0000
committerWilliam Harrington <kb0iic@berzerkula.org>2021-04-19 02:01:33 +0000
commitca7ec24a78f9bd8824da23be1c24a98a3c764f5f (patch)
treef8b56862b35c0765024a081f3814043d6b172453 /chapter8/expect.sh
parent13f2c64995621d3180b468c4d525eff1eb8c9993 (diff)
Make adjustments for Odroid N2+ aarch64 build.
Diffstat (limited to 'chapter8/expect.sh')
-rw-r--r--chapter8/expect.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/chapter8/expect.sh b/chapter8/expect.sh
index 8a2e24b..7789eb5 100644
--- a/chapter8/expect.sh
+++ b/chapter8/expect.sh
@@ -1,10 +1,13 @@
#!/bin/bash
+set -e
./configure --prefix=/usr \
--with-tcl=/usr/lib \
--enable-shared \
--mandir=/usr/share/man \
- --with-tclinclude=/usr/include &&
+ --with-tclinclude=/usr/include \
+ "$([ "$(uname -m)" = aarch64 ] && echo aarch64-unknown-linux-gnu)" &&
+
make &&
make -j1 install &&