From 1530aa06ea29994108e8aa758e4fd305b66f0925 Mon Sep 17 00:00:00 2001 From: "warren%netscape.com" Date: Wed, 20 Sep 2000 21:28:30 +0000 Subject: [PATCH] Taking stab at change -- need to use topsrcdir for objDir build system. --- config/rules.mk | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/config/rules.mk b/config/rules.mk index f66ba622909..d109f002ca2 100644 --- a/config/rules.mk +++ b/config/rules.mk @@ -1132,17 +1132,14 @@ endif ################################################################################ # CHROME PACKAGING -JAR_MANIFEST := jar.mn +JAR_MANIFEST := $(srcdir)/jar.mn chrome:: - @if test -f $(JAR_MANIFEST); then $(PERL) $(MOZILLA_DIR)/config/make-jars.pl -c -d $(DIST)/bin/chrome < $(JAR_MANIFEST); fi + @if test -f $(JAR_MANIFEST); then $(PERL) $(topsrcdir)/config/make-jars.pl -c -d $(DIST)/bin/chrome < $(JAR_MANIFEST); fi install:: chrome -REGCHROME = echo $(PERL) $(MOZILLA_DIR)/config/add-chrome.pl $(DIST)/bin/chrome/installed-chrome.txt; \ - pwd; \ - ls $(MOZILLA_DIR)/config; \ - $(PERL) $(MOZILLA_DIR)/config/add-chrome.pl $(DIST)/bin/chrome/installed-chrome.txt +REGCHROME = $(PERL) $(topsrcdir)/config/add-chrome.pl $(DIST)/bin/chrome/installed-chrome.txt ##############################################################################