diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-07-04 18:19:52 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-07-04 18:19:52 +0200 |
commit | 76482ce0e7ce6e03bc5e17e217ac6d8b6f075846 (patch) | |
tree | 85fb43ca5b3a4aefa781b57a474126171dc3a4cd | |
parent | e477ba0c50eada497760ba83474318a7e1270a7a (diff) | |
download | ghdl-76482ce0e7ce6e03bc5e17e217ac6d8b6f075846.tar.gz ghdl-76482ce0e7ce6e03bc5e17e217ac6d8b6f075846.tar.bz2 ghdl-76482ce0e7ce6e03bc5e17e217ac6d8b6f075846.zip |
Move pnodes.py.py to xtools directory.
-rwxr-xr-x | python/xtools/pnodespy.py (renamed from python/pnodes/pnodespy.py) | 3 | ||||
-rw-r--r-- | src/vhdl/Makefile | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/python/pnodes/pnodespy.py b/python/xtools/pnodespy.py index 4a2859838..641452def 100755 --- a/python/pnodes/pnodespy.py +++ b/python/xtools/pnodespy.py @@ -3,9 +3,6 @@ """Like pnodes but output for python""" from __future__ import print_function -import sys -sys.path.append("../xtools") - import pnodes import re diff --git a/src/vhdl/Makefile b/src/vhdl/Makefile index 70b7862a4..754f063dd 100644 --- a/src/vhdl/Makefile +++ b/src/vhdl/Makefile @@ -21,7 +21,7 @@ # regenerate them (and don't need to have python installed). PNODES=../../python/xtools/pnodes.py -PNODESPY=../../python/pnodes/pnodespy.py +PNODESPY=../../python/xtools/pnodespy.py DEPS=vhdl-nodes.ads vhdl-nodes.adb.in $(PNODES) |