diff options
author | midipix <writeonce@midipix.org> | 2019-01-02 10:15:29 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-02 22:21:08 -0500 |
commit | dfaf819a8ce78fb51297fc9bb5da8247ab53268d (patch) | |
tree | 29469041246f7e5af072a07e934d01216c082d99 | |
parent | dd89320eb6a3aaec3911e58036217920e3857e6f (diff) | |
download | bfirm-dfaf819a8ce78fb51297fc9bb5da8247ab53268d.tar.bz2 bfirm-dfaf819a8ce78fb51297fc9bb5da8247ab53268d.tar.xz |
build system: configure: set mb_shell to /bin/sh if not set.
-rwxr-xr-x | configure | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -351,6 +351,11 @@ common_defaults() fi fi + # shell + if [ -z "$mb_shell" ]; then + mb_shell='/bin/sh' + fi + # inherited cflags & ldflags mb_cflags_cmdline="$mb_cflags_cmdline $mb_cflags" mb_ldflags_cmdline="$mb_ldflags_cmdline $mb_ldflags" |