From 7d49916ca95e81e65610cfe609c00ba4cef26c36 Mon Sep 17 00:00:00 2001 From: "bsmedberg%covad.net" Date: Mon, 11 Apr 2005 18:36:01 +0000 Subject: [PATCH] Bug 254571 - when "make install"ing, sometimes the chrome directory is not created. use nsinstall -D to fix this patch by Alexander Sack r=me a=asa --- config/rules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/rules.mk b/config/rules.mk index 8d6e24e2c0a..7ce9b22277b 100644 --- a/config/rules.mk +++ b/config/rules.mk @@ -1648,7 +1648,7 @@ install:: $(CHROME_DEPS) ifndef NO_INSTALL @$(EXIT_ON_ERROR) \ if test -f $(JAR_MANIFEST); then \ - if test ! -d $(DESTDIR)$(mozappdir)/chrome; then mkdir $(DESTDIR)$(mozappdir)/chrome; fi; \ + if test ! -d $(DESTDIR)$(mozappdir)/chrome; then $(NSINSTALL) -D $(DESTDIR)$(mozappdir)/chrome; fi; \ $(PERL) $(MOZILLA_DIR)/config/preprocessor.pl $(XULPPFLAGS) $(DEFINES) $(ACDEFINES) \ $(JAR_MANIFEST) | \ $(PERL) -I$(MOZILLA_DIR)/config $(MOZILLA_DIR)/config/make-jars.pl \