summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-06-10 20:40:58 +0000
committermidipix <writeonce@midipix.org>2021-06-10 20:41:38 +0000
commit77df5406321897403c88cd84924744da77701013 (patch)
tree7936ed94f940ebe7bb6af9d12d50378c29aad4cb
parent9d7424669858f745506cd5a3059c0197b61d1c0f (diff)
downloadntux-77df5406321897403c88cd84924744da77701013.tar.bz2
ntux-77df5406321897403c88cd84924744da77701013.tar.xz
build system: ccenv_set_cc(): properly handle older slibtool versions.
-rw-r--r--sofort/ccenv/ccenv.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index a542823..a0f69f2 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -511,7 +511,7 @@ ccenv_set_cc()
$ccenv_dumpmachine_switch 2>&3)
elif command -v slibtool > /dev/null 2>&1; then
- ccenv=$(slibtool --dumpmachine 2>/dev/null)
+ ccenv=$(slibtool --dumpmachine 2>/dev/null || true)
fi
if [ -z "$ccenv_host" ]; then
@@ -546,7 +546,7 @@ ccenv_set_cc()
elif [ -z "$ccenv_host" ]; then
# no -dumpmachine support and no --host argument implies native build
if command -v slibtool > /dev/null 2>&1; then
- ccenv=$(slibtool --dumpmachine 2>/dev/null)
+ ccenv=$(slibtool --dumpmachine 2>/dev/null || true)
fi
if [ -z "$ccenv_host" ]; then