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 | b8f358de79616d17113900be51d5f8329425bd0c (patch) | |
tree | 676de3a592b43bed861f403c663822ddeb8fb560 | |
parent | 51a3322559b165a70ce731e6ed4443cec404b094 (diff) | |
download | sltdl-b8f358de79616d17113900be51d5f8329425bd0c.tar.bz2 sltdl-b8f358de79616d17113900be51d5f8329425bd0c.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 |