diff options
author | midipix <writeonce@midipix.org> | 2020-08-16 06:31:07 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-08-16 18:04:08 +0000 |
commit | 03503df5feb1e71156a9b5c4653ee6151a794fd9 (patch) | |
tree | ed44dc5a762a610c2a71275472c36776f1069b26 /sofort | |
parent | b135b5ae7584e32ea81c87415a522aa3d04be11d (diff) | |
download | w32lib-03503df5feb1e71156a9b5c4653ee6151a794fd9.tar.bz2 w32lib-03503df5feb1e71156a9b5c4653ee6151a794fd9.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 |