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 | 52c30a67bb2c27f96385924dd4f96898b69a0916 (patch) | |
tree | 89e3ac858c6225257c1c0d9899c3d62c9fe405f0 | |
parent | 28c1c56404407b8f1d69637ecef461744ce4faeb (diff) | |
download | sofort-52c30a67bb2c27f96385924dd4f96898b69a0916.tar.bz2 sofort-52c30a67bb2c27f96385924dd4f96898b69a0916.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 |