Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2009-11-25 22:15:43 +0000
committerAndrew Niefer2009-11-25 22:15:43 +0000
commit861cf87c4044034c8a7f18d13487f2444dab7288 (patch)
tree511319b65ab5a8bfad21a8a1d733a51b2d632e87
parent10c5700397f45088dcfa7415ce4947301a0e5912 (diff)
downloadrt.equinox.p2-861cf87c4044034c8a7f18d13487f2444dab7288.tar.gz
rt.equinox.p2-861cf87c4044034c8a7f18d13487f2444dab7288.tar.xz
rt.equinox.p2-861cf87c4044034c8a7f18d13487f2444dab7288.zip
bug 296101 - binary folder in branding
-rw-r--r--bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/tools/Repo2Runnable.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/tools/Repo2Runnable.java b/bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/tools/Repo2Runnable.java
index 7960691af..44e8e6fd2 100644
--- a/bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/tools/Repo2Runnable.java
+++ b/bundles/org.eclipse.equinox.p2.repository.tools/src/org/eclipse/equinox/p2/internal/repository/tools/Repo2Runnable.java
@@ -135,7 +135,9 @@ public class Repo2Runnable extends AbstractApplication implements IApplication {
IProvisioningPlan plan = engine.createCustomPlan(profile, operands, context);
IStatus result = engine.perform(plan, getPhaseSet(), progress.newChild(1));
- engine.perform(plan, getNativePhase(), progress.newChild(1));
+ PhaseSet nativeSet = getNativePhase();
+ if (nativeSet != null)
+ engine.perform(plan, nativeSet, progress.newChild(1));
// publish the metadata to a destination - if requested
publishMetadata(progress.newChild(1));

Back to the top