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 | 6f0e1226a73a03e077a1c58792745f12fe2bcea9 (patch) | |
tree | 4a2846d958feefa6f39d78f63d50066a4fd8e4b7 | |
parent | ed7828e808f15616107ec7dd9b19f16cdede37ea (diff) | |
download | perk-6f0e1226a73a03e077a1c58792745f12fe2bcea9.tar.bz2 perk-6f0e1226a73a03e077a1c58792745f12fe2bcea9.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 |