diff options
author | bryan newbold <bnewbold@leaflabs.com> | 2013-11-13 09:49:38 -0500 |
---|---|---|
committer | bryan newbold <bnewbold@leaflabs.com> | 2013-11-13 10:36:10 -0500 |
commit | 4fd470bba649aaeb14772ae95c9797cdd263c0ff (patch) | |
tree | 256091cca385e00b061441efb0f1070896ff2447 /contrib | |
parent | 46750548a529068726f74764d752badc231b2b4d (diff) | |
download | basic-hdl-template-4fd470bba649aaeb14772ae95c9797cdd263c0ff.tar.gz basic-hdl-template-4fd470bba649aaeb14772ae95c9797cdd263c0ff.zip |
fix bugs with copying _xmsgs to logs
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/xilinx.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/xilinx.mk b/contrib/xilinx.mk index 87fe12b..8f1ace8 100644 --- a/contrib/xilinx.mk +++ b/contrib/xilinx.mk @@ -157,9 +157,9 @@ bitfiles: build/$(project).bit build/$(project).mcs @for x in .bit .mcs .cfi _par.ncd _post_par.twr _post_par.twx; do \ cp build/$(project)$$x $@/$(timestamp)/$(project)$$x || true; \ cp build/$(project)$$x $@/latest/$(project)$$x || true; \ - done - @cp -R build/$(project)/__xmsgs $@/$(timestamp)/$(project)/logs || true; \ - @cp -R build/$(project)/__xmsgs $@/latest/$(project)/logs || true; \ + done; + @cp -R build/_xmsgs $@/$(timestamp)/logs || true; + @cp -R build/_xmsgs $@/latest/logs || true; @bash -c "$(xil_env); \ cd ..; \ xst -help | head -1 | sed 's/^/#/' | cat - build/$(project).scr > $@/$(timestamp)/$(project).scr" |