diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-01-18 22:59:19 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-01-30 20:17:46 -0500 |
commit | 9a7ba4aa0ed5bd60fd01bf0817692212a854bf78 (patch) | |
tree | 55b72c71a97f7d2a9aa3ed943ad28b0555aa9dfb /sim/Makefile.in | |
parent | ca51543cf525edfdf3ed0822f288988d380382c9 (diff) | |
download | gdb-9a7ba4aa0ed5bd60fd01bf0817692212a854bf78.zip gdb-9a7ba4aa0ed5bd60fd01bf0817692212a854bf78.tar.gz gdb-9a7ba4aa0ed5bd60fd01bf0817692212a854bf78.tar.bz2 |
sim: common: change gennltvals helper to Python
This tool is only run by developers and not in a release build,
so rewrite it in Python to make it more maintainable.
Diffstat (limited to 'sim/Makefile.in')
-rw-r--r-- | sim/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index a35f807..1a2dbb1 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -232,7 +232,7 @@ config.status: configure # An alternative is to slurp in the tables at runtime. .PHONY: nltvals nltvals: - $(SHELL) $(abs_srcdir)/common/gennltvals.sh --cpp "$(CPP)" --output nltvals.def --srcroot $(srcroot) && \ + $(abs_srcdir)/common/gennltvals.py --cpp "$(CPP)" --output nltvals.def --srcroot $(srcroot) && \ $(SHELL) $(srcroot)/move-if-change nltvals.def $(abs_srcdir)/common/nltvals.def # Utility to run autoconf in each directory that uses the common framework. |