Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2015-03-15 16:56:42 +0000
committerDavid Williams2015-03-15 16:56:42 +0000
commitc71eb8d949f7788ba0b293e53a2896078d16245b (patch)
tree48670a39944494e5b1b5710533cfdca41b23b59c
parent362607b626bcebc264e1b49fd252084ecc078f0b (diff)
downloadeclipse.platform.releng.aggregator-c71eb8d949f7788ba0b293e53a2896078d16245b.tar.gz
eclipse.platform.releng.aggregator-c71eb8d949f7788ba0b293e53a2896078d16245b.tar.xz
eclipse.platform.releng.aggregator-c71eb8d949f7788ba0b293e53a2896078d16245b.zip
[releng] re-enable SWT Patch
-rwxr-xr-xproduction/build-functions.shsource8
-rw-r--r--production/build_eclipse_org.shsource2
2 files changed, 5 insertions, 5 deletions
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index 33aaa8649..4e7ca860a 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -81,8 +81,8 @@ fn-git-update-submodules ()
fn-git-clean ()
{
# See bug 400657
- echo git clean -f -d -x
- git clean -f -d -x
+ echo git clean -f -d -X
+ git clean -f -d -X
RC=$?
if [[ $RC != 0 ]]
then
@@ -129,8 +129,8 @@ fn-git-reset ()
fn-git-clean-submodules ()
{
# See bug 400657
- echo git submodule foreach git clean -f -d -x
- git submodule foreach git clean -f -d -x
+ echo git submodule foreach git clean -f -d -X
+ git submodule foreach git clean -f -d -X
RC=$?
if [[ $RC != 0 ]]
then
diff --git a/production/build_eclipse_org.shsource b/production/build_eclipse_org.shsource
index 65d9ecfe0..493b78741 100644
--- a/production/build_eclipse_org.shsource
+++ b/production/build_eclipse_org.shsource
@@ -91,4 +91,4 @@ export JAVA_DOC_TOOL="-Declipse.javadoc=/shared/common/jdk1.8.0_x64-latest/bin/j
export USING_TYCHO_SNAPSHOT=true
export PATCH_TYCHO=true
-#export PATCH_SWT=true
+export PATCH_SWT=true

Back to the top