summaryrefslogtreecommitdiff
path: root/sofort/ccenv
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2020-08-16 08:51:24 +0000
committermidipix <writeonce@midipix.org>2020-08-16 18:03:57 +0000
commit8529a399c815af484b53e6f18bdf4742e4e8011a (patch)
tree147f63f01ac1fea67746ee8185db6231d62ae8ce /sofort/ccenv
parent5a43ed38ec211cb4a30b44bd20e4976b387797d3 (diff)
downloadbcparser-8529a399c815af484b53e6f18bdf4742e4e8011a.tar.bz2
bcparser-8529a399c815af484b53e6f18bdf4742e4e8011a.tar.xz
build system: ccenv: ccenv_set_cc_bits(): further accommodate legacy shells.
Diffstat (limited to 'sofort/ccenv')
-rw-r--r--sofort/ccenv/ccenv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index 52ad423..1215334 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -640,7 +640,7 @@ ccenv_set_cc_bits()
ccenv_internal_test='char x[(sizeof(%s) == %s/8) ? 1 : -1];'
for ccenv_internal_guess in 64 32 128; do
- if [ -z $ccenv_internal_size ]; then
+ if [ -z "${ccenv_internal_size:-}" ]; then
ccenv_internal_str=$(printf "$ccenv_internal_test" \
"$ccenv_internal_type" \
"$ccenv_internal_guess")