summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-04-10 13:49:05 +0000
committermidipix <writeonce@midipix.org>2021-04-10 20:54:54 +0000
commit082ade6d3e3af33476a1f5e8334e80c8a8cb80a2 (patch)
treebaef55137366c7d280c377ab9e58f02d71d4d067 /configure
parent006efe1afef7af9c5bae6125589400e710ac886d (diff)
downloadsbpython3-082ade6d3e3af33476a1f5e8334e80c8a8cb80a2.tar.bz2
sbpython3-082ade6d3e3af33476a1f5e8334e80c8a8cb80a2.tar.xz
build system: configure: added --makemode and MAKEMODE support.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
1 files changed, 9 insertions, 0 deletions
diff --git a/configure b/configure
index a555eb6..ff05411 100755
--- a/configure
+++ b/configure
@@ -214,6 +214,7 @@ init_vars()
# make
mb_make=$MAKE
+ mb_makemode=$MAKEMODE
# build
mb_build=$BUILD
@@ -608,6 +609,10 @@ common_defaults()
mb_make='make'
fi
+ if [ -z "$mb_makemode" ]; then
+ mb_makemode='posix'
+ fi
+
# shell
if [ -z "$mb_shell" ]; then
mb_shell='/bin/sh'
@@ -943,6 +948,10 @@ for arg ; do
mb_make=${arg#*=}
;;
+ --makemode=*)
+ mb_makemode=${arg#*=}
+ ;;
+
# build
--build=*)
mb_build=${arg#*=}