From b3d40a273f03709a4767930e4a5cb6969368707b Mon Sep 17 00:00:00 2001 From: "bmlk%gmx.de" Date: Sun, 30 Mar 2008 12:26:03 +0000 Subject: [PATCH] disable dom html2 on mac --- dom/tests/mochitest/Makefile.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dom/tests/mochitest/Makefile.in b/dom/tests/mochitest/Makefile.in index f176d5346f2..87719139d57 100644 --- a/dom/tests/mochitest/Makefile.in +++ b/dom/tests/mochitest/Makefile.in @@ -46,12 +46,17 @@ DIRS += \ dom-level0 \ dom-level1-core \ dom-level2-core \ - dom-level2-html \ ajax \ bugs \ chrome \ whatwg \ $(NULL) +ifneq ($(MOZ_WIDGET_TOOLKIT),cocoa) +DIRS += \ + dom-level2-html \ + $(NULL) +endif + include $(topsrcdir)/config/rules.mk