FELIX-431 Replace backslashes also in the name, not just the path

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@601704 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java b/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
index 9091f29..9f94ea0 100644
--- a/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
+++ b/bundleplugin/src/main/java/org/apache/felix/bundleplugin/BundlePlugin.java
@@ -643,6 +643,7 @@
                     // this is a workaround for a problem with bnd 0.0.189
                     if ( File.separatorChar != '/' )
                     {
+                        name = name.replace(File.separatorChar, '/');
                         path = path.replace(File.separatorChar, '/');
                     }