summaryrefslogtreecommitdiff
path: root/sofort
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-06-10 21:50:25 +0000
committermidipix <writeonce@midipix.org>2021-06-10 21:51:54 +0000
commite586d5b93356b069012cc624872cf2c167049bf3 (patch)
tree70d2a4bdb66f721ea52721074dff3440afc61c24 /sofort
parentec416167a211c329f79c9b40165686f67d414746 (diff)
downloadsbmake-e586d5b93356b069012cc624872cf2c167049bf3.tar.bz2
sbmake-e586d5b93356b069012cc624872cf2c167049bf3.tar.xz
build system: ccenv_set_primary_tools(): be resilient to -print-file-name bugs.
Diffstat (limited to 'sofort')
-rw-r--r--sofort/ccenv/ccenv.sh13
1 files changed, 10 insertions, 3 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index a0f69f2..e52f640 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -239,9 +239,16 @@ ccenv_set_primary_tools()
# archive format preamble
if [ -n "$ccenv_dumpmachine_switch" ]; then
- ccenv_libgcc_a_header=$(od -b -N8 \
- $($ccenv_cc -print-file-name=libgcc.a) \
- | head -n1)
+ ccenv_libgcc_path=$($ccenv_cc -print-file-name=libgcc.a \
+ 2>/dev/null)
+
+ if [ -n "$ccenv_libgcc_path" ]; then
+ ccenv_libgcc_a_header=$(od -b -N8 \
+ $($ccenv_cc -print-file-name=libgcc.a) \
+ | head -n1)
+ else
+ ccenv_libgcc_a_header=
+ fi
else
ccenv_libgcc_a_header=
fi