diff options
author | midipix <writeonce@midipix.org> | 2020-08-16 06:31:07 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-08-16 18:03:58 +0000 |
commit | f75a1e9ec245b2b3c06f1374d4de7235767f01cc (patch) | |
tree | 0ceb62825cece6b8bfd441f568fc7b0b78d772fa /sofort/ccenv | |
parent | 496245ee6856a55d18d7f01a69580da696f4c0e2 (diff) | |
download | bfirm-f75a1e9ec245b2b3c06f1374d4de7235767f01cc.tar.bz2 bfirm-f75a1e9ec245b2b3c06f1374d4de7235767f01cc.tar.xz |
build system: ccenv: ccenv_set_tool_variants(): not all tools support --help.
Diffstat (limited to 'sofort/ccenv')
-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 |