diff options
author | midipix <writeonce@midipix.org> | 2021-06-10 18:14:08 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-10 18:30:31 +0000 |
commit | bfe402e9517d34b433a528c8ed61bfba9953bee2 (patch) | |
tree | 2340964b299befea903096bf08e0d4b34abbd9ae | |
parent | f82e4d1a4cb0511ce7038f46349d1ff24d311f56 (diff) | |
download | w32lib-bfe402e9517d34b433a528c8ed61bfba9953bee2.tar.bz2 w32lib-bfe402e9517d34b433a528c8ed61bfba9953bee2.tar.xz |
build system: configure: config_host(): quote variable in test expresssion.
-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 |