diff options
author | 1138-4EB <1138-4EB@users.noreply.github.com> | 2019-06-17 07:57:59 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2019-06-17 07:57:59 +0200 |
commit | f6379989022c1e71017f4151392a300534d2007a (patch) | |
tree | 783ba27543a32a5c009a5cdc92952809a1436728 /src/vhdl | |
parent | 159e0bfdbb135e74aac10e54c7a499e9e34aa5a2 (diff) | |
download | ghdl-f6379989022c1e71017f4151392a300534d2007a.tar.gz ghdl-f6379989022c1e71017f4151392a300534d2007a.tar.bz2 ghdl-f6379989022c1e71017f4151392a300534d2007a.zip |
fix: move src/xtools to python/xtools (#846)
* fix: move src/xtools to python/xtools
* fix Makefiles affected by xtools and pnodes being moved
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/Makefile b/src/vhdl/Makefile index 425563a18..3f09c855f 100644 --- a/src/vhdl/Makefile +++ b/src/vhdl/Makefile @@ -20,8 +20,8 @@ # be committed and distribued with the sources, so that users don't need to # regenerate them (and don't need to have python installed). -PNODES=../xtools/pnodes.py -PNODESPY=python/pnodespy.py +PNODES=../../python/xtools/pnodes.py +PNODESPY=../../python/pnodes/pnodespy.py DEPS=vhdl-nodes.ads vhdl-nodes.adb.in $(PNODES) |