diff options
author | midipix <writeonce@midipix.org> | 2020-08-16 06:31:07 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-08-16 18:04:07 +0000 |
commit | 7ca03747d41bc361cafada7f0a491ced7151e820 (patch) | |
tree | 487b2e3a7bce39b82756c97d5a78bbee048a6dfc /sofort | |
parent | f5ec0e054ff6b45748cdc61f9a795b97edd0c994 (diff) | |
download | u16ports-7ca03747d41bc361cafada7f0a491ced7151e820.tar.bz2 u16ports-7ca03747d41bc361cafada7f0a491ced7151e820.tar.xz |
build system: ccenv: ccenv_set_tool_variants(): not all tools support --help.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index b8a9219..c026030 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -238,7 +238,7 @@ ccenv_set_tool_variants() if [ "$ccenv_tool" = false ]; then ccenv_as_asm= else - $ccenv_tool --help | grep -i '.bc assembler' \ + $ccenv_tool --help 2>&1 | grep -i '.bc assembler' \ || ccenv_as_asm="$ccenv_tool" fi |