diff options
author | midipix <writeonce@midipix.org> | 2020-08-16 06:31:07 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-08-16 18:04:06 +0000 |
commit | 501980e0eeca40e4d25b1d501a02b2521110aa9a (patch) | |
tree | 1e5306dd9fef1006d669bc8abe890ec5336546c4 | |
parent | a339e23d6cae9a9f4d658c72de7244042b9a4755 (diff) | |
download | sofort-501980e0eeca40e4d25b1d501a02b2521110aa9a.tar.bz2 sofort-501980e0eeca40e4d25b1d501a02b2521110aa9a.tar.xz |
build system: ccenv: ccenv_set_tool_variants(): not all tools support --help.
-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 |