diff options
author | midipix <writeonce@midipix.org> | 2018-12-23 04:25:15 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-24 10:52:04 -0500 |
commit | 859d8430569d0fea496b4a805ed7dcdeb70e4ee7 (patch) | |
tree | 147589097ead272e73fe26c8c381fd84cb5b60ec | |
parent | 0a1180841b46b8a94e18ba91961805efea7024ce (diff) | |
download | ntux-859d8430569d0fea496b4a805ed7dcdeb70e4ee7.tar.bz2 ntux-859d8430569d0fea496b4a805ed7dcdeb70e4ee7.tar.xz |
build system: config_support(): initial clean-up.
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -639,14 +639,14 @@ config_support() mbt_cc=$(make .display-cc) mbt_cflags=$(make .display-cflags) mbt_source='int foo(int x){return ++x;}' - mbt_result='no' + mbt_result=no rm -f a.out - echo "$mbt_source" | "$mbt_cc" -shared -o a.out -xc - - stat a.out >/dev/null 2>&1 && mbt_result=yes + printf '%s' "$mbt_source" | $mbt_cc -shared -o a.out -xc - + [ -f a.out ] && mbt_result=yes rm -f a.out - if [ "$mbt_result" = 'no' ]; then + if [ $mbt_result = no ]; then mb_disable_shared=yes config_copy fi |