From 085723a7b2daf548a148d64d26a024c6b7834ef0 Mon Sep 17 00:00:00 2001 From: Yury Delendik Date: Fri, 11 May 2012 18:12:48 -0500 Subject: [PATCH] make the locale stuff a precondition for make extension --- make.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/make.js b/make.js index 90ccfb347..88f7c69a0 100755 --- a/make.js +++ b/make.js @@ -250,6 +250,7 @@ target.extension = function() { echo(); echo('### Building extensions'); + target.locale(); target.production(); target.firefox(); target.chrome(); @@ -302,6 +303,7 @@ target.firefox = function() { FIREFOX_EXTENSION_NAME = 'pdf.js.xpi', FIREFOX_AMO_EXTENSION_NAME = 'pdf.js.amo.xpi'; + target.locale(); target.production(); target.buildnumber(); cd(ROOT_DIR);