diff options
author | midipix <writeonce@midipix.org> | 2021-04-09 09:30:51 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-10 20:55:00 +0000 |
commit | 35387f5968086b68d4a045b5b0e4d191b3c09330 (patch) | |
tree | 7daa1fda40112cba99354aace92d5875557873d1 /configure | |
parent | 9650a9bb98e930512218ccb8d3ddfb4990178075 (diff) | |
download | u16ports-35387f5968086b68d4a045b5b0e4d191b3c09330.tar.bz2 u16ports-35387f5968086b68d4a045b5b0e4d191b3c09330.tar.xz |
build system: configure: added --make and MAKE support.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -211,6 +211,8 @@ init_vars() mb_pdfdir=$PDFDIR mb_psdir=$PSDIR + # make + mb_make=$MAKE # build mb_build=$BUILD @@ -600,6 +602,11 @@ common_defaults() fi fi + # make + if [ -z "$mb_make" ]; then + mb_make='make' + fi + # shell if [ -z "$mb_shell" ]; then mb_shell='/bin/sh' @@ -732,7 +739,7 @@ config_host() { output_step_prolog ${mb_script} 'config_host' - make -s host.tag \ + ${mb_make} -s host.tag \ && output_step_epilog \ && return 0 @@ -887,6 +894,10 @@ for arg ; do mb_psdir=${arg#*=} ;; + #make + --make=*) + mb_make=${arg#*=} + ;; # build --build=*) |