aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-09 18:24:08 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-10 18:14:47 +0200
commit0f995708288bb330cefeac11187ce064c2ec3bb1 (patch)
tree6af8f0066e760de181a43dd1e570308d6ce39247 /src/vhdl
parent987a94c378dfb969e8bb7f1b734f29a33e63212e (diff)
downloadghdl-0f995708288bb330cefeac11187ce064c2ec3bb1.tar.gz
ghdl-0f995708288bb330cefeac11187ce064c2ec3bb1.tar.bz2
ghdl-0f995708288bb330cefeac11187ce064c2ec3bb1.zip
Move errorout from vhdl/ to src/
Diffstat (limited to 'src/vhdl')
-rw-r--r--src/vhdl/Makefile2
-rwxr-xr-xsrc/vhdl/python/pnodespy.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/Makefile b/src/vhdl/Makefile
index be42197a5..6eb52cfae 100644
--- a/src/vhdl/Makefile
+++ b/src/vhdl/Makefile
@@ -96,7 +96,7 @@ python/libghdl/elocations.py: $(PNODESPY) vhdl-elocations.ads
$(PNODESPY) $(ELOCATIONS_FLAGS) libghdl-elocs > $@
chmod -w $@
-python/libghdl/errorout.py: $(PNODESPY) errorout.ads
+python/libghdl/errorout.py: $(PNODESPY) ../errorout.ads
$(RM) $@
$(PNODESPY) $(ELOCATIONS_FLAGS) libghdl-errorout > $@
chmod -w $@
diff --git a/src/vhdl/python/pnodespy.py b/src/vhdl/python/pnodespy.py
index bcc8d9fbe..54a025e1f 100755
--- a/src/vhdl/python/pnodespy.py
+++ b/src/vhdl/python/pnodespy.py
@@ -221,7 +221,7 @@ def do_libghdl_tokens():
def do_libghdl_errorout():
- read_enum("errorout.ads", "Msgid_Type", "(Msgid|Warnid)_", "Msgid",
+ read_enum("../errorout.ads", "Msgid_Type", "(Msgid|Warnid)_", "Msgid",
g=lambda m: m.group(1) + '_' + m.group(2))