From 9df677a0a0d06e12b18aa911a46eba1e0d300e42 Mon Sep 17 00:00:00 2001 From: "reed@reedloden.com" Date: Tue, 2 Oct 2007 01:26:15 -0700 Subject: [PATCH] s/ifeq/ifneq/ to make the check for only Cocoa instead of non-Cocoa (fallout from bug 397834). --- gfx/src/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/src/Makefile.in b/gfx/src/Makefile.in index 2a8323fc8525..2b78dae053a0 100644 --- a/gfx/src/Makefile.in +++ b/gfx/src/Makefile.in @@ -94,7 +94,7 @@ EXTRA_DSO_LDOPTS = \ $(MOZ_COMPONENT_LIBS) \ $(NULL) -ifeq (,$(filter cocoa,$(MOZ_WIDGET_TOOLKIT))) +ifneq (,$(filter cocoa,$(MOZ_WIDGET_TOOLKIT))) EXTRA_DSO_LDOPTS += \ $(TK_LIBS) \ $(NULL)