changeset 12441:3de38bb7bc1d

attempt to fix Eclipse build loop issue
author Doug Simon <doug.simon@oracle.com>
date Wed, 16 Oct 2013 14:17:42 +0200
parents b3490a7bb1b7
children bef1738b58d9
files mxtool/mx.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mxtool/mx.py	Wed Oct 16 13:24:34 2013 +0200
+++ b/mxtool/mx.py	Wed Oct 16 14:17:42 2013 +0200
@@ -2675,7 +2675,8 @@
 
         if _isAnnotationProcessorDependency(p):
             _genEclipseBuilder(out, p, 'Jar.launch', 'archive ' + p.name, refresh=False, async=False, xmlIndent='', xmlStandalone='no')
-            _genEclipseBuilder(out, p, 'Refresh.launch', '', refresh=True, async=True)
+            # Refresh.launch seems to cause occasional build looping in Eclipse
+            # _genEclipseBuilder(out, p, 'Refresh.launch', '', refresh=True, async=True)
 
         if projToDist.has_key(p.name):
             dist, distDeps = projToDist[p.name]