Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
make: fix byteswap invocation
  • Loading branch information
Sebastien Bourdeauducq committed Jul 7, 2013
1 parent 4cd360e commit d0b2146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make.py
Expand Up @@ -41,7 +41,7 @@ def build(platform_name, build_bitstream, build_header):
if build_bitstream:
build_name = "soc-"+platform_name
platform.build(soc, build_name=build_name)
subprocess.call(["tools/byteswap", build_name+".bin", build_name+".fpg"])
subprocess.call(["tools/byteswap", "build/"+build_name+".bin", "build/"+build_name+".fpg"])
else:
soc.finalize()
if build_header:
Expand Down

0 comments on commit d0b2146

Please sign in to comment.