summaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-23 04:25:15 -0500
committermidipix <writeonce@midipix.org>2018-12-24 10:53:16 -0500
commite2baf4552175f2dc252804d704d71a739002a08e (patch)
tree9b8a79e6f16f1ffd20c18ddc0cb6525b869894f8 /configure
parentcda2fb30f9b7917e743d841cf31b6672886d5421 (diff)
downloadsofort-e2baf4552175f2dc252804d704d71a739002a08e.tar.bz2
sofort-e2baf4552175f2dc252804d704d71a739002a08e.tar.xz
build system: config_support(): initial clean-up.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 8425401..0c0ac00 100755
--- a/configure
+++ b/configure
@@ -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