1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-29 10:24:12 +01:00

Workaround for MacOSX gatekeeper (OSX 10.10.4)

Reapply d6c5344b67 until avrdude 6.3
is fixed.
This commit is contained in:
Cristian Maglie 2015-07-20 12:28:42 +02:00
parent d6db1deef0
commit 5102ed46ee

View File

@ -495,6 +495,11 @@
<fileset dir="${staging_folder}/work/${staging_hardware_folder}/tools" includes="**/bin/*"/>
<fileset dir="${staging_folder}/work/${staging_hardware_folder}/tools" includes="**/libexec/gcc/avr/4.8.1/*"/>
</chmod>
<!-- macosx gatekeeper workaround. See https://github.com/arduino/Arduino/issues/3468 -->
<chmod perm="-x">
<fileset dir="${staging_folder}/work/${staging_hardware_folder}/tools" includes="**/bin/avrdude_bin" />
</chmod>
</target>
<target name="macosx-run" depends="build,start"/>