From 4a624be31ab3c0ee329d68a29637dcda91f0ea4a Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Sat, 18 Nov 2017 22:20:30 +0100 Subject: [PATCH] pforth: Make M32 a local variable --- packages/pforth/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/pforth/build.sh b/packages/pforth/build.sh index d139a7cc4..f9d2d29fb 100644 --- a/packages/pforth/build.sh +++ b/packages/pforth/build.sh @@ -8,9 +8,9 @@ TERMUX_PKG_HOSTBUILD=yes TERMUX_PKG_REVISION=1 termux_step_host_build () { - M32="" + local M32="" if [ $TERMUX_ARCH_BITS = "32" ]; then - export M32="-m32" + M32="-m32" fi cp -Rf $TERMUX_PKG_SRCDIR/* . cd build/unix