diff options
author | midipix <writeonce@midipix.org> | 2021-06-10 18:14:08 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-10 18:30:29 +0000 |
commit | b0b5da3426623652d1b0ad48ba3c78a2fd2a2688 (patch) | |
tree | 60273336543b865ea99fc386d317f79eb5dfab8f | |
parent | 88a51015346bf96d1092d21d90b565a508581028 (diff) | |
download | mdso-b0b5da3426623652d1b0ad48ba3c78a2fd2a2688.tar.bz2 mdso-b0b5da3426623652d1b0ad48ba3c78a2fd2a2688.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 |