diff options
author | midipix <writeonce@midipix.org> | 2021-04-10 13:49:05 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-10 15:37:31 +0000 |
commit | b4b46d1e742acdf4ddf5ac4d1c2d7a521bab0f96 (patch) | |
tree | 1b81b4d2a90abd424ff8cf43886ed2bfc8bfc583 /configure | |
parent | 4599bcc4d4f6fdc87c717ac7ef616d94a97d413f (diff) | |
download | slibtool-b4b46d1e742acdf4ddf5ac4d1c2d7a521bab0f96.tar.bz2 slibtool-b4b46d1e742acdf4ddf5ac4d1c2d7a521bab0f96.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#*=} |