Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2011-08-17 14:12:18 +0000
committerSilenio Quarti2011-08-17 14:24:23 +0000
commit0b1515ac1b0d772b10ac2aaa2e57adbbea6a52a2 (patch)
tree4fb0ed93811f26c7009bfe387381289087caa9c7
parent164d9651ff5cb89a5ed3527254506f8c95990130 (diff)
downloadeclipse.platform.swt-0b1515ac1b0d772b10ac2aaa2e57adbbea6a52a2.tar.gz
eclipse.platform.swt-0b1515ac1b0d772b10ac2aaa2e57adbbea6a52a2.tar.xz
eclipse.platform.swt-0b1515ac1b0d772b10ac2aaa2e57adbbea6a52a2.zip
better print for compared against
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml9
1 files changed, 6 insertions, 3 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index 34002fadcf..f3ae0ec4c8 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -406,8 +406,8 @@
<condition property="source_changed">
<length string="${diffs}" trim="true" when="greater" length="0"/>
</condition>
- <echo>Has source changes: ${source_changed}, compared against</echo>
- <exec dir="${repo.src}" executable="git" failonerror="true" outputproperty="diffs">
+ <echo>Has source changes: ${source_changed}, compared against:</echo>
+ <exec dir="${repo.src}" executable="git" failonerror="true">
<arg line="log -1 ${SHA1}"/>
</exec>
</target>
@@ -779,7 +779,10 @@
<condition property="natives_changed">
<length string="${diffs}" trim="true" when="greater" length="0"/>
</condition>
- <echo>Has native changes: ${natives_changed}, compared against ${SHA1}</echo>
+ <echo>Has native changes: ${natives_changed}, compared against:</echo>
+ <exec dir="${repo.src}" executable="git" failonerror="true">
+ <arg line="log -1 ${SHA1}"/>
+ </exec>
</target>
<target name="init_fragment">

Back to the top