1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-17 06:52:18 +01:00

Eliminating temporary file when unzipping 64-bit Linux AVR toolchain.

http://code.google.com/p/arduino/issues/detail?id=841
This commit is contained in:
David A. Mellis 2012-02-29 16:43:01 -05:00
parent 8cd670bee3
commit 34d7925f27

View File

@ -367,10 +367,9 @@
<chmod perm="755" file="linux/work/hardware/tools/avrdude" />
<!-- Unzip AVR tools -->
<bunzip2 dest="linux" src="linux/avr_tools_linux64.tar.bz2" />
<exec executable="tar" dir="linux/work/hardware">
<arg value="-xf"/>
<arg value="../../avr_tools_linux64.tar"/>
<arg value="-xjf"/>
<arg value="../../avr_tools_linux64.tar.bz2"/>
</exec>
</target>