From d0e2f8fcb3f4b81f0be07b25ec876eafcedd7c0e Mon Sep 17 00:00:00 2001 From: mstroh76 Date: Fri, 1 Mar 2024 18:59:58 +0100 Subject: [PATCH] #192 --- build | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build b/build index 309f75d..c993792 100755 --- a/build +++ b/build @@ -86,7 +86,8 @@ if [ x$1 = "xdebian" ]; then here=`pwd` deb_destdir=${here}/debian-template/wiringPi cd debian-template/wiringPi - ARCH=$(dpkg-architecture -qDEB_HOST_ARCH) + export ARCH=$(dpkg-architecture -qDEB_HOST_ARCH) + echo architecture $ARCH envsubst < control_template > DEBIAN/control rm -rf usr cd $here/wiringPi @@ -97,7 +98,7 @@ if [ x$1 = "xdebian" ]; then make install-deb INCLUDE='-I../wiringPi -I../devLib' LDFLAGS=-L../debian-template/wiringPi/usr/lib DEB_DESTDIR=${deb_destdir} cd $here/debian-template fakeroot dpkg-deb --build wiringPi - dpkg-name wiringPi.deb + dpkg-name -o wiringPi.deb exit fi