Skip to content

Commit 34d7925

Browse files
committed
Eliminating temporary file when unzipping 64-bit Linux AVR toolchain.
http://code.google.com/p/arduino/issues/detail?id=841
1 parent 8cd670b commit 34d7925

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

build/build.xml

+2-3
Original file line numberDiff line numberDiff line change
@@ -367,10 +367,9 @@
367367
<chmod perm="755" file="linux/work/hardware/tools/avrdude" />
368368

369369
<!-- Unzip AVR tools -->
370-
<bunzip2 dest="linux" src="linux/avr_tools_linux64.tar.bz2" />
371370
<exec executable="tar" dir="linux/work/hardware">
372-
<arg value="-xf"/>
373-
<arg value="../../avr_tools_linux64.tar"/>
371+
<arg value="-xjf"/>
372+
<arg value="../../avr_tools_linux64.tar.bz2"/>
374373
</exec>
375374
</target>
376375

0 commit comments

Comments
 (0)