diff options
author | midipix <writeonce@midipix.org> | 2021-06-10 18:14:08 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-10 18:15:58 +0000 |
commit | 425693030968d68dc15aa208b25cd573ee3beb8a (patch) | |
tree | 7595426d0a1863a663bbeca0dc862f13c885a3ab /configure | |
parent | f3cd938b0b881f78ff395f8c1c5d49f843e18cf4 (diff) | |
download | slibtool-425693030968d68dc15aa208b25cd573ee3beb8a.tar.bz2 slibtool-425693030968d68dc15aa208b25cd573ee3beb8a.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 |