diff options
author | midipix <writeonce@midipix.org> | 2020-08-16 08:51:24 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-08-16 18:04:02 +0000 |
commit | 20aac4b262c451433c0b477295acb5990664b4fd (patch) | |
tree | f7eb7b392165ae28bddca46c8a0d0b0de906d159 | |
parent | bb082ee238c8b452e8962d3668427e575c758630 (diff) | |
download | perk-20aac4b262c451433c0b477295acb5990664b4fd.tar.bz2 perk-20aac4b262c451433c0b477295acb5990664b4fd.tar.xz |
build system: ccenv: ccenv_set_cc_bits(): further accommodate legacy shells.
-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") |