diff options
author | midipix <writeonce@midipix.org> | 2020-08-16 06:31:07 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-08-16 06:31:07 +0000 |
commit | ad0f74afcbcdca2f8b080f9d2a813db36ab19a07 (patch) | |
tree | ee743d371b8918cb248486889b184f38ed4cf6d1 | |
parent | 20c0254948f1cf94e3891729d0c6c509eb694c2c (diff) | |
download | mdso-ad0f74afcbcdca2f8b080f9d2a813db36ab19a07.tar.bz2 mdso-ad0f74afcbcdca2f8b080f9d2a813db36ab19a07.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 |