Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2012-10-18 15:04:27 +0000
committerBogdan Gheorghe2012-10-18 16:26:28 +0000
commitb956edc8927c2f11f0d0ee5277deaa4387dd97df (patch)
tree8b4045fb7ca59f218b592d23968c3fab87350184
parente5ad328ca46878f518164a86b5708fe82ff0a69f (diff)
downloadeclipse.platform.swt-b956edc8927c2f11f0d0ee5277deaa4387dd97df.tar.gz
eclipse.platform.swt-b956edc8927c2f11f0d0ee5277deaa4387dd97df.tar.xz
eclipse.platform.swt-b956edc8927c2f11f0d0ee5277deaa4387dd97df.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 e006fd5cf7..2caafe0a16 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -776,13 +776,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">

Back to the top