Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--production/master-build.sh2
-rw-r--r--production/tempPatches/p2SourceFix.patch40
2 files changed, 41 insertions, 1 deletions
diff --git a/production/master-build.sh b/production/master-build.sh
index b89ea670d..1e3f67ea0 100644
--- a/production/master-build.sh
+++ b/production/master-build.sh
@@ -179,7 +179,7 @@ else
# temp patches for bugs
# apply the pre-created patch from tempPatches
# patches created, typically, by navigating to repoToPath, then
- # git diff --no-prefix > ../eclipse.platform.releng.aggregator/production/tempPatches/
+ # git diff --no-prefix > ../eclipse.platform.releng.aggregator/production/tempPatches/<patchFileName>
# (then commit and push aggregator)
repoToPatch=eclipse.jdt.core
diff --git a/production/tempPatches/p2SourceFix.patch b/production/tempPatches/p2SourceFix.patch
new file mode 100644
index 000000000..375942ca0
--- /dev/null
+++ b/production/tempPatches/p2SourceFix.patch
@@ -0,0 +1,40 @@
+diff --git features/org.eclipse.equinox.p2.sdk/feature.xml features/org.eclipse.equinox.p2.sdk/feature.xml
+index a0d4b8b..b5bf2dd 100644
+--- features/org.eclipse.equinox.p2.sdk/feature.xml
++++ features/org.eclipse.equinox.p2.sdk/feature.xml
+@@ -20,7 +20,7 @@
+ </license>
+
+ <includes
+- id="org.eclipse.equinox.p2.discovery.feature.source"
++ id="org.eclipse.equinox.p2.discovery.feature"
+ version="0.0.0"/>
+
+ <plugin
+@@ -690,5 +690,26 @@
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
++
++ <plugin
++ id="org.eclipse.equinox.p2.discovery.source"
++ download-size="0"
++ install-size="0"
++ version="0.0.0"
++ unpack="false"/>
++
++ <plugin
++ id="org.eclipse.equinox.p2.discovery.compatibility.source"
++ download-size="0"
++ install-size="0"
++ version="0.0.0"
++ unpack="false"/>
++
++ <plugin
++ id="org.eclipse.equinox.p2.ui.discovery.source"
++ download-size="0"
++ install-size="0"
++ version="0.0.0"
++ unpack="false"/>
+
+ </feature>

Back to the top