diff options
author | midipix <writeonce@midipix.org> | 2020-08-16 08:51:24 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-08-16 18:04:05 +0000 |
commit | efd62dec6ebc2809e13cee7f689b31f44f0302d3 (patch) | |
tree | f61a63ffefb11bb0d416302ab704ba1c458de336 /sofort | |
parent | 3158adefbfea3bd0ee64e2ef6c76e9cb5d8f77bb (diff) | |
download | sbpython3-efd62dec6ebc2809e13cee7f689b31f44f0302d3.tar.bz2 sbpython3-efd62dec6ebc2809e13cee7f689b31f44f0302d3.tar.xz |
build system: ccenv: ccenv_set_cc_bits(): further accommodate legacy shells.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 2 |
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") |