diff options
author | midipix <writeonce@midipix.org> | 2019-01-02 10:15:29 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-02 22:21:18 -0500 |
commit | acc8c30c0bfd89c4f6bb08e6ba0e9d7aefa55c39 (patch) | |
tree | 0577f5f94d0cc7d2c048d6f667a77c079839c2aa /configure | |
parent | fee9e48ec1be2e37c5bdd81d18b6df21921561db (diff) | |
download | sbpython3-acc8c30c0bfd89c4f6bb08e6ba0e9d7aefa55c39.tar.bz2 sbpython3-acc8c30c0bfd89c4f6bb08e6ba0e9d7aefa55c39.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" |