3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-03 16:19:58 +00:00

Merge pull request #4974 from YosysHQ/micko/config_exitcode

yosys-config: Propagate exit code for help command
This commit is contained in:
KrystalDelusion 2025-04-03 09:56:13 +13:00 committed by GitHub
commit 1cfe1e2813
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View file

@ -1049,7 +1049,7 @@ define DOC_USAGE_STDERR
docs/source/generated/$(1): $(TARGETS) docs/source/generated FORCE
-$(Q) ./$(PROGRAM_PREFIX)$(1) --help 2> $$@
endef
DOCS_USAGE_STDERR := yosys-config yosys-filterlib
DOCS_USAGE_STDERR := yosys-filterlib
# The in-tree ABC (yosys-abc) is only built when ABCEXTERNAL is not set.
ifeq ($(ABCEXTERNAL),)
@ -1063,7 +1063,7 @@ define DOC_USAGE_STDOUT
docs/source/generated/$(1): $(TARGETS) docs/source/generated
$(Q) ./$(PROGRAM_PREFIX)$(1) --help > $$@ || rm $$@
endef
DOCS_USAGE_STDOUT := yosys yosys-smtbmc yosys-witness
DOCS_USAGE_STDOUT := yosys yosys-smtbmc yosys-witness yosys-config
$(foreach usage,$(DOCS_USAGE_STDOUT),$(eval $(call DOC_USAGE_STDOUT,$(usage))))
docs/usage: $(addprefix docs/source/generated/,$(DOCS_USAGE_STDOUT) $(DOCS_USAGE_STDERR))

View file

@ -36,12 +36,12 @@ help() {
echo ""
echo " $0 --datdir/simlib.v"
echo ""
} >&2
exit 1
} >&$(( $1 + 1))
exit $1
}
if [ $# -eq 0 ]; then
help
help 1
fi
if [ "$1" = "--build" ]; then
@ -83,7 +83,7 @@ for opt; do
tokens=( "${tokens[@]}" '@DATDIR@'"${opt#${prefix}datdir}" ) ;;
--help|-\?|-h)
if [ ${#tokens[@]} -eq 0 ]; then
help
help 0
else
tokens=( "${tokens[@]}" "$opt" )
fi ;;