Repository: cordova-lib Updated Branches: refs/heads/CB-8086 5527679db -> 3b66c8902
CB-8086 Added an explanatory comment. Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/3b66c890 Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/3b66c890 Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/3b66c890 Branch: refs/heads/CB-8086 Commit: 3b66c8902e7e7279a5d78475f5cb1700a4b8ec4a Parents: 5527679 Author: Max Woghiren <[email protected]> Authored: Wed Nov 26 16:04:02 2014 -0500 Committer: Max Woghiren <[email protected]> Committed: Wed Nov 26 16:04:02 2014 -0500 ---------------------------------------------------------------------- cordova-lib/src/plugman/platforms/android.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/3b66c890/cordova-lib/src/plugman/platforms/android.js ---------------------------------------------------------------------- diff --git a/cordova-lib/src/plugman/platforms/android.js b/cordova-lib/src/plugman/platforms/android.js index 5bad742..d72a0b1 100644 --- a/cordova-lib/src/plugman/platforms/android.js +++ b/cordova-lib/src/plugman/platforms/android.js @@ -165,6 +165,7 @@ module.exports = { }, getCustomSubprojectRelativeDir: function (plugin_id, project_dir, src) { // All custom subprojects are prefixed with the last portion of the package id. + // This is to avoid collisions when opening multiple projects in Eclipse that have subprojects with the same name. var prefix = module.exports.package_suffix(project_dir); var subRelativeDir = path.join(plugin_id, prefix + '-' + path.basename(src)); return subRelativeDir; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
