From e1a50eda59873882da89980b93b0aa691b5d902d Mon Sep 17 00:00:00 2001 From: Mack Duan Date: Wed, 24 Apr 2013 13:21:37 -0700 Subject: [PATCH] Fix node make extension for building chrome --- make.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/make.js b/make.js index 7da88bcc8..7e1d565ee 100644 --- a/make.js +++ b/make.js @@ -83,7 +83,7 @@ var COMMON_WEB_FILES = // modern HTML5 browsers. // target.generic = function() { - target.bundle(); + target.bundle({}); target.locale(); cd(ROOT_DIR); @@ -553,7 +553,7 @@ target.b2g = function() { var B2G_BUILD_DIR = BUILD_DIR + '/b2g/', B2G_BUILD_CONTENT_DIR = B2G_BUILD_DIR + '/content/'; var defines = builder.merge(DEFINES, { B2G: true }); - target.bundle(); + target.bundle({}); // Clear out everything in the b2g build directory cd(ROOT_DIR); @@ -591,7 +591,7 @@ target.chrome = function() { var CHROME_BUILD_DIR = BUILD_DIR + '/chrome/', CHROME_BUILD_CONTENT_DIR = CHROME_BUILD_DIR + '/content/'; - target.bundle(); + target.bundle({}); cd(ROOT_DIR); // Clear out everything in the chrome extension build directory