diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-05 08:15:51 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-05 13:55:18 +0200 |
commit | da19fd319d2e54afa2cf230aab044a65b51d77c7 (patch) | |
tree | 59623c6eb28a846e49bec29bd68c49618201193a /src/vhdl | |
parent | ec5cdde54b8b59e6bb0ecdd05938adc8f40e8521 (diff) | |
download | ghdl-da19fd319d2e54afa2cf230aab044a65b51d77c7.tar.gz ghdl-da19fd319d2e54afa2cf230aab044a65b51d77c7.tar.bz2 ghdl-da19fd319d2e54afa2cf230aab044a65b51d77c7.zip |
vhdl/python: adjust script after renaming.
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/Makefile | 2 | ||||
-rwxr-xr-x | src/vhdl/python/pnodespy.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/Makefile b/src/vhdl/Makefile index e4a7c91d5..2ff18046f 100644 --- a/src/vhdl/Makefile +++ b/src/vhdl/Makefile @@ -81,7 +81,7 @@ python/libghdl/std_names.py: $(PNODESPY) ../std_names.ads $(PNODESPY) libghdl-names > $@ chmod -w $@ -python/libghdl/tokens.py: $(PNODESPY) tokens.ads +python/libghdl/tokens.py: $(PNODESPY) vhdl-tokens.ads $(RM) $@ $(PNODESPY) libghdl-tokens > $@ chmod -w $@ diff --git a/src/vhdl/python/pnodespy.py b/src/vhdl/python/pnodespy.py index 96e66b54a..3743cfdff 100755 --- a/src/vhdl/python/pnodespy.py +++ b/src/vhdl/python/pnodespy.py @@ -217,7 +217,7 @@ def do_libghdl_names(): def do_libghdl_tokens(): - read_enum("tokens.ads", "Token_Type", "Tok_", "Tok") + read_enum("vhdl-tokens.ads", "Token_Type", "Tok_", "Tok") def do_libghdl_errorout(): |