diff options
author | midipix <writeonce@midipix.org> | 2021-05-27 04:18:40 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-05-27 04:21:28 +0000 |
commit | fb7e7fe2681317e0b2c21ad2d5c9bc22c03e2c5e (patch) | |
tree | 42a1fd0805d274a9fe77819cdd8f99d862731a54 /configure | |
parent | 1d7d51d2f4a862a3f055a98e5ddb7af53d427f5c (diff) | |
download | ntux-fb7e7fe2681317e0b2c21ad2d5c9bc22c03e2c5e.tar.bz2 ntux-fb7e7fe2681317e0b2c21ad2d5c9bc22c03e2c5e.tar.xz |
build system: configure: cfgtest: do not rely on default word splitting.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -874,7 +874,7 @@ config_host() printf '\n%s' "$mb_cfghost_cc $ccenv_tmpname -o a.out" >&3 - for mb_cfghost_cflag in $mb_cfghost_cflags; do + for mb_cfghost_cflag in $(printf '%s' "$mb_cfghost_cflags"); do printf ' \\\n\t%s' "$mb_cfghost_cflag" >&3 done |