diff options
author | midipix <writeonce@midipix.org> | 2021-06-10 18:14:08 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-10 18:30:30 +0000 |
commit | 8ff1e77465046e91f99b0adddcb08f82feb0682b (patch) | |
tree | 9484803585950ea771dc364795cbaff142b78e7a /configure | |
parent | 65aba7765478865aa77ae09100d6d937d3a87619 (diff) | |
download | sbpython2-8ff1e77465046e91f99b0adddcb08f82feb0682b.tar.bz2 sbpython2-8ff1e77465046e91f99b0adddcb08f82feb0682b.tar.xz |
build system: configure: config_host(): quote variable in test expresssion.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -864,7 +864,7 @@ config_host() mb_cfghost_cflags="${mb_cfghost_cflags#*: }" - if [ $mb_cc_environment = 'freestanding' ]; then + if [ "$mb_cc_environment" = 'freestanding' ]; then if [ -z "mb_cc_underscore" ]; then mb_cfghost_start_fn='_start' else |