From f88d8a200ac068fdce07aa39b0b24dadc0a93c10 Mon Sep 17 00:00:00 2001 From: "bryner%brianryner.com" Date: Sun, 5 Sep 2004 03:40:59 +0000 Subject: [PATCH] Don't try to build an empty library (on platforms where this is no shell service impl). Bug 252207. --- browser/components/shell/src/Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/browser/components/shell/src/Makefile.in b/browser/components/shell/src/Makefile.in index 3a8d9ce4b47..48b3420f242 100644 --- a/browser/components/shell/src/Makefile.in +++ b/browser/components/shell/src/Makefile.in @@ -27,7 +27,6 @@ VPATH = @srcdir@ include $(DEPTH)/config/autoconf.mk MODULE = shellservice -LIBRARY_NAME = shellservice_s REQUIRES = \ xpcom \ @@ -60,6 +59,10 @@ endif endif endif +ifdef CPPSRCS +LIBRARY_NAME = shellservice_s +endif + FORCE_STATIC_LIB = 1 include $(topsrcdir)/config/rules.mk