Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmi Shanmugam2017-11-29 11:06:53 +0000
committerLakshmi Shanmugam2017-11-29 11:06:53 +0000
commitf18375ee53fbfeabb5fc0547d0699235896888c3 (patch)
treefdb85af7a82914dc947f2112d00a1141b60822be /bundles
parent556831a53249972f7640d75e2c1db0b86940da86 (diff)
downloadeclipse.platform.swt-f18375ee53fbfeabb5fc0547d0699235896888c3.tar.gz
eclipse.platform.swt-f18375ee53fbfeabb5fc0547d0699235896888c3.tar.xz
eclipse.platform.swt-f18375ee53fbfeabb5fc0547d0699235896888c3.zip
Bug 527472: Cleanup buildSWT.xml
Adding includes in fileset for remove results in error. Backing out the change for removeid and addid for now. Change-Id: I00daf837ddf2fb9bfeb607f1931a5357476c2614
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.swt/buildSWT.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/buildSWT.xml b/bundles/org.eclipse.swt/buildSWT.xml
index 4f70c88e18..69e37f0250 100644
--- a/bundles/org.eclipse.swt/buildSWT.xml
+++ b/bundles/org.eclipse.swt/buildSWT.xml
@@ -591,7 +591,7 @@
<!-- Params: fragment, swt_version -->
<target name="commit_binaries" depends="get_version">
<!-- Get libraries to remove from repo -->
- <fileset id="removeid" dir="${repo.bin}" includes="**/org.eclipse.swt.gtk.linux.ppc64*/**, **/org.eclipse.swt.gtk.linux.x86*/**, **/org.eclipse.swt.win32.*/**, **/org.eclipse.swt.cocoa.macosx.*/**">
+ <fileset id="removeid" dir="${repo.bin}">
<filename regex="[0-9][0-9][0-9][0-9]."/>
<filename regex="${swt_version}." negate="true"/>
<exclude name="**/.git/**"/>
@@ -605,7 +605,7 @@
<property name="rfiles" refid="removeid"/>
<!-- Get list of files to commit -->
- <fileset id="addid" dir="${repo.bin}" includes="**/org.eclipse.swt.gtk.linux.ppc64*/**, **/org.eclipse.swt.gtk.linux.x86*/**, **/org.eclipse.swt.win32.*/**, **/org.eclipse.swt.cocoa.macosx.*/**">
+ <fileset id="addid" dir="${repo.bin}">
<include name="bundles/*/*${swt_version}*"/>
<include name="bundles/*/build.sha1"/>
<exclude name="**/.git/**"/>

Back to the top