diff options
author | midipix <writeonce@midipix.org> | 2019-01-02 10:15:29 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-02 22:21:17 -0500 |
commit | 0c76e6790e40a0ec7d4b84c1ba7f02546e232d0b (patch) | |
tree | 210a47ceea8b3a12796649fa85b29cd0466ad2f5 /configure | |
parent | f939303e2f420876a4508093c62f0442c750c4cc (diff) | |
download | sbpython2-0c76e6790e40a0ec7d4b84c1ba7f02546e232d0b.tar.bz2 sbpython2-0c76e6790e40a0ec7d4b84c1ba7f02546e232d0b.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" |