diff options
author | midipix <writeonce@midipix.org> | 2021-04-10 16:15:25 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-10 20:54:59 +0000 |
commit | a91f6ce9887dfd381631a904b608fa79abd79d15 (patch) | |
tree | 21c04b785deaeccf25dce28db58234737b80ad65 /configure | |
parent | 3e7080e3acfef16968ec49593cce420a2c5a08f4 (diff) | |
download | tpax-a91f6ce9887dfd381631a904b608fa79abd79d15.tar.bz2 tpax-a91f6ce9887dfd381631a904b608fa79abd79d15.tar.xz |
build system: configure: automatically detect make mode if not already set.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -611,6 +611,15 @@ common_defaults() if [ -z "$mb_makemode" ]; then mb_makemode='posix' + + printf '%s\n%s\n%s\n\n%s\n\n' \ + 'ifeq (a,b)' \ + 'VAR = val' \ + 'endif' \ + 'all:' \ + | ${mb_make} -s -f - 2>/dev/null \ + && mb_makemode='modern' + fi # shell |