summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti <silenio_quarti@ca.ibm.com>2012-10-18 11:04:27 -0400
committerSilenio Quarti <silenio_quarti@ca.ibm.com>2012-10-18 11:04:27 -0400
commit356366c757fd1bf4314a6b8a0628110e3b25e6d3 (patch)
tree76bcc3169dc4f4528d005fd00127aeafd7867a25
parent76dc304877618fd04c6ff757c0ccf443b35b6559 (diff)
downloadeclipse.platform.swt-356366c757fd1bf4314a6b8a0628110e3b25e6d3.tar.gz
eclipse.platform.swt-356366c757fd1bf4314a6b8a0628110e3b25e6d3.tar.xz
eclipse.platform.swt-356366c757fd1bf4314a6b8a0628110e3b25e6d3.zip
Bug 392214 - UnsatisfiedLinkError on Kepler - better now
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index eeaba96a45..178bb43aeb 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -778,13 +778,13 @@
<!-- Check for changes -->
<exec dir="${repo.src}" executable="git" failonerror="true" outputproperty="diffs">
+ <arg line="diff ${SHA1} ${library_src}"/>
+ </exec>
+ <condition property="natives_changed">
<or>
<length string="${SHA1}" trim="true" when="equal" length="0"/>
<length string="${diffs}" trim="true" when="greater" length="0"/>
</or>
- </exec>
- <condition property="natives_changed">
- <length string="${diffs}" trim="true" when="greater" length="0"/>
</condition>
<echo>Has native changes: ${natives_changed}, compared against:</echo>
<exec dir="${repo.src}" executable="git" failonerror="true">