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 | 3e60db71306652e59444766e90dc0dfae5d9b053 (patch) | |
tree | a9134cbbd7a257963c48e7a8d889d8bca7eac8a3 /configure | |
parent | 773beef5f56f57f2f364d8036ac98eed9d82983a (diff) | |
download | dalist-3e60db71306652e59444766e90dc0dfae5d9b053.tar.bz2 dalist-3e60db71306652e59444766e90dc0dfae5d9b053.tar.xz |
build system: configure: config_host(): quote variable in test expresssion.
Diffstat (limited to 'configure')
-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 |