Skip to content

Commit 24be377

Browse files
author
Federico Fissore
committed
build.xml: renamed unzip-tool to untar-tool
1 parent 4b7eaf2 commit 24be377

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build/build.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@
252252
<param name="target.path" value="macosx/work/Arduino.app/Contents/Resources/Java" />
253253
</antcall>
254254

255-
<antcall target="unzip-tool">
255+
<antcall target="untar-tool">
256256
<param name="dist_file" value="gcc-arm-none-eabi-4.8.3-2014q1-mac.tar.gz" />
257257
<param name="dist_url" value="http://downloads.arduino.cc/gcc-arm-none-eabi-4.8.3-2014q1-mac.tar.gz" />
258258
<param name="dist_check_file" value="gcc-arm-none-eabi-4.8.3-2014q1" />
@@ -486,7 +486,7 @@
486486

487487
<target name="linux32-build" depends="linux-build" description="Build linux (32-bit) version">
488488
<!-- Unzip ARM tools -->
489-
<antcall target="unzip-tool">
489+
<antcall target="untar-tool">
490490
<param name="dist_file" value="gcc-arm-none-eabi-4.8.3-2014q1-linux32.tar.gz" />
491491
<param name="dist_url" value="http://downloads.arduino.cc/gcc-arm-none-eabi-4.8.3-2014q1-linux32.tar.gz" />
492492
<param name="dist_check_file" value="gcc-arm-none-eabi-4.8.3-2014q1" />
@@ -500,7 +500,7 @@
500500

501501
<target name="linux64-build" depends="linux-build" description="Build linux (64-bit) version">
502502
<!-- Unzip ARM tools -->
503-
<antcall target="unzip-tool">
503+
<antcall target="untar-tool">
504504
<param name="dist_file" value="gcc-arm-none-eabi-4.8.3-2014q1-linux64.tar.gz" />
505505
<param name="dist_url" value="http://downloads.arduino.cc/gcc-arm-none-eabi-4.8.3-2014q1-linux64.tar.gz" />
506506
<param name="dist_check_file" value="gcc-arm-none-eabi-4.8.3-2014q1" />
@@ -573,7 +573,7 @@
573573
</target>
574574

575575
<!-- Ensure that the tool is downloaded and test checksums, if everything's ok unzip it on the tools folder -->
576-
<target name="unzip-tool" depends="get-tool, check-tool" unless="${dist_file}_installed">
576+
<target name="untar-tool" depends="get-tool, check-tool" unless="${dist_file}_installed">
577577
<echo>Testing checksum of "${staging_folder}/dist/${dist_file}"</echo>
578578
<checksum file="${staging_folder}/dist/${dist_file}" algorithm="sha" fileext=".sha" verifyproperty="checksum.matches"/>
579579
<condition property="checksum.matches.fail">
@@ -771,7 +771,7 @@
771771
</chmod>
772772

773773
<!-- Unzip ARM toolchain -->
774-
<antcall target="unzip-tool">
774+
<antcall target="untar-tool">
775775
<param name="dist_file" value="gcc-arm-none-eabi-4.8.3-2014q1-windows.tar.gz" />
776776
<param name="dist_url" value="http://downloads.arduino.cc/gcc-arm-none-eabi-4.8.3-2014q1-windows.tar.gz" />
777777
<param name="dist_check_file" value="gcc-arm-none-eabi-4.8.3-2014q1" />

0 commit comments

Comments
 (0)