diff options
author | midipix <writeonce@midipix.org> | 2021-06-10 18:14:08 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-10 18:30:28 +0000 |
commit | 46221ce95c1c670d71e8e6983bcc61a254cf8417 (patch) | |
tree | d05add4838ec948b3802b2083bb0f9560ea366b8 /configure | |
parent | d0e3724d635063297e42a82a40469d9e5b99da2b (diff) | |
download | apimagic-46221ce95c1c670d71e8e6983bcc61a254cf8417.tar.bz2 apimagic-46221ce95c1c670d71e8e6983bcc61a254cf8417.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 |