Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/arduino/Arduino.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCristian Maglie <c.maglie@arduino.cc>2015-07-20 13:28:42 +0300
committerCristian Maglie <c.maglie@arduino.cc>2016-08-17 19:28:41 +0300
commit5102ed46ee75be65c4fc9fc676a51d4f4c9ada2f (patch)
tree236cfe2fa39efd2dac03faa7402373831fc57657
parentd6db1deef089317ddb8a6462038ff35e5013ce8d (diff)
Workaround for MacOSX gatekeeper (OSX 10.10.4)1.6.11
Reapply d6c5344b6792ce0e24a08bf695aa5cde6701e461 until avrdude 6.3 is fixed.
-rw-r--r--build/build.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/build/build.xml b/build/build.xml
index df653d2e4..d08dc48d0 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -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"/>