From 93a702b685b342892ac7ba0f16cf7a5e33965451 Mon Sep 17 00:00:00 2001 From: "kin%netscape.com" Date: Wed, 2 Dec 1998 21:24:25 +0000 Subject: [PATCH] Fix for Unix build bustage. We only build the editor core code if MOZ_EDITOR is set, otherwise, we just export the editor interfaces. --- editor/Makefile.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/editor/Makefile.in b/editor/Makefile.in index d8d410c150f..da60c7f7cb7 100644 --- a/editor/Makefile.in +++ b/editor/Makefile.in @@ -22,11 +22,14 @@ srcdir = @srcdir@ include $(DEPTH)/config/autoconf.mk -DIRS = public core +DIRS = public +ifdef MOZ_EDITOR +DIRS += core ifdef ENABLE_TESTS DIRS += tests endif +endif include $(topsrcdir)/config/config.mk