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 | f593c735dedb9345bf21c13b55b0b9fa73c61591 (patch) | |
tree | 2af9a249a1ad38b4ed0e7db8b220054b767a8637 | |
parent | b9a36d53b43341ea98d8aa48f635f01a28072d16 (diff) | |
download | tpax-f593c735dedb9345bf21c13b55b0b9fa73c61591.tar.bz2 tpax-f593c735dedb9345bf21c13b55b0b9fa73c61591.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 |