From 630f23ea51ecf5d2069001f15dea1f90ca68d010 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Tue, 8 Jan 2013 18:22:51 +0100 Subject: [PATCH] Bug 827851 - Move the rules from bug 822017 after including rules.mk; r=ted --- browser/app/profile/extensions/Makefile.in | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/browser/app/profile/extensions/Makefile.in b/browser/app/profile/extensions/Makefile.in index fff217f4abe..9e96bbd395d 100644 --- a/browser/app/profile/extensions/Makefile.in +++ b/browser/app/profile/extensions/Makefile.in @@ -27,14 +27,6 @@ all_xpis = $(foreach dir,$(EXTENSIONS),$(DISTROEXT)/$(dir).xpi) libs:: $(all_xpis) GARBAGE += $(all_xpis) -$(all_xpis): $(DISTROEXT)/%.xpi: $(call mkdir_deps,$(DISTROEXT)) libs-% - cd $* && \ - $(ZIP) -r9XD $@ * -x \*.in -x \*.mkdir.done - cd $(call core_abspath,$(srcdir)/$*) && \ - $(ZIP) -r9XD $@ * -x \*.in -x \*.mkdir.done - -.PHONY: $(all_xpis:.xpi=) - define pp_one $(2) := $(2) $(2)_PATH := $(dir $(2)) @@ -50,3 +42,11 @@ $(foreach d,$(EXTENSIONS), \ endif include $(topsrcdir)/config/rules.mk + +$(all_xpis): $(DISTROEXT)/%.xpi: $(call mkdir_deps,$(DISTROEXT)) libs-% + cd $* && \ + $(ZIP) -r9XD $@ * -x \*.in -x \*.mkdir.done + cd $(call core_abspath,$(srcdir)/$*) && \ + $(ZIP) -r9XD $@ * -x \*.in -x \*.mkdir.done + +.PHONY: $(all_xpis:.xpi=)