Hi,

There's an error in jtag/python/makefile

The line 
cp build/lib.linux-i686-$(PVER)/$@ .
only works on i686 systems.

A simple solution is to add the following in the start of the file
MTYPE:=$(shell (uname -m))

and then change the wrong line to:
cp build/lib.linux-$(MTYPE)-$(PVER)/$@ .


Using this I am able to compile on a i586 system

Jonas


Reply via email to