diff options
-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) |