From a308e6889c9bb3ec46e6cda74443fa7364aa49bb Mon Sep 17 00:00:00 2001 From: "shaver%mozilla.org" Date: Tue, 7 Jun 2005 00:43:55 +0000 Subject: [PATCH] If we are not already building xmlextras, make sure to build it here. r=pavlov. (Wanted: explicit extension-dependency system.) git-svn-id: svn://10.0.0.236/trunk@174197 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/extensions/webdav/Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/mozilla/extensions/webdav/Makefile.in b/mozilla/extensions/webdav/Makefile.in index 6df039d760f..8b21fce0b53 100644 --- a/mozilla/extensions/webdav/Makefile.in +++ b/mozilla/extensions/webdav/Makefile.in @@ -45,7 +45,11 @@ VPATH = @srcdir@ include $(DEPTH)/config/autoconf.mk MODULE = webdav -DIRS = public src +DIRS = +ifeq (,$(filter xmlextras,$(MOZ_EXTENSIONS))) +DIRS += ../xmlextras +endif +DIRS += public src include $(topsrcdir)/config/rules.mk