diff options
author | midipix <writeonce@midipix.org> | 2021-04-10 13:49:05 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-10 20:54:36 +0000 |
commit | 2814c01210e7d9c3c353adb8d9c2cf3b012528a8 (patch) | |
tree | 756bdc2e378b2e820c203bbb0a1c0737743f8e2f /configure | |
parent | cc08a586b8d8c6432b0c64be022979888864e815 (diff) | |
download | bcparser-2814c01210e7d9c3c353adb8d9c2cf3b012528a8.tar.bz2 bcparser-2814c01210e7d9c3c353adb8d9c2cf3b012528a8.tar.xz |
build system: configure: added --makemode and MAKEMODE support.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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#*=} |