diff options
author | midipix <writeonce@midipix.org> | 2019-01-02 10:15:29 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-02 22:21:19 -0500 |
commit | d59f3f0d36ee32a957ccb7e038f2226ae7353ab6 (patch) | |
tree | 70d7b33e161f07239030b7b54a3b950b708dabc1 /configure | |
parent | e609175ad4e9fe026df6a54c42ab033623faa1fb (diff) | |
download | sofort-d59f3f0d36ee32a957ccb7e038f2226ae7353ab6.tar.bz2 sofort-d59f3f0d36ee32a957ccb7e038f2226ae7353ab6.tar.xz |
build system: configure: set mb_shell to /bin/sh if not set.
Diffstat (limited to 'configure')
-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" |