diff options
author | midipix <writeonce@midipix.org> | 2019-01-02 10:15:29 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-02 22:21:12 -0500 |
commit | 2ce1d8fe4814162d5706d7d4c76e996eb1af1844 (patch) | |
tree | f59962822e9f8df8781a9c4e0bba1ccbee72cd5d | |
parent | 694f42d8710a942c0862901e72f859cd53537b61 (diff) | |
download | ntapi-2ce1d8fe4814162d5706d7d4c76e996eb1af1844.tar.bz2 ntapi-2ce1d8fe4814162d5706d7d4c76e996eb1af1844.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" |