diff options
author | midipix <writeonce@midipix.org> | 2021-06-10 20:40:58 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-10 20:41:38 +0000 |
commit | df475f8e6f5560d2cd2cee0d67b0c8cb949112bf (patch) | |
tree | 30c879fd5df1d1b0215cf05a5f83edf6221ad6e1 /sofort | |
parent | 71eb80d013f648d6f5ff998b56773b7958cdfb8f (diff) | |
download | mmglue-df475f8e6f5560d2cd2cee0d67b0c8cb949112bf.tar.bz2 mmglue-df475f8e6f5560d2cd2cee0d67b0c8cb949112bf.tar.xz |
build system: ccenv_set_cc(): properly handle older slibtool versions.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 4 |
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 |