Bug 495228, followup patch: Remove a few trailing right-paren characters that were missed in this bug's previous landing (to fix build warnings like "Extraneous text after ifneq directive"). r=ted
--- a/browser/components/safebrowsing/content/test/Makefile.in
+++ b/browser/components/safebrowsing/content/test/Makefile.in
@@ -42,17 +42,17 @@ srcdir = @srcdir@
VPATH = @srcdir@
relativesrcdir = browser/components/safebrowsing/content/test
include $(DEPTH)/config/autoconf.mk
include $(topsrcdir)/config/rules.mk
# The browser chrome test for bug 415846 doesn't run on Mac because of its
# bizarre special-and-unique snowflake of a help menu.
-ifneq (cocoa,$(MOZ_WIDGET_TOOLKIT)))
+ifneq (cocoa,$(MOZ_WIDGET_TOOLKIT))
_NON_MAC_BROWSER_TESTS = browser_bug415846.js
endif
_BROWSER_FILES = browser_bug400731.js \
$(_NON_MAC_BROWSER_TESTS) \
$(NULL)
libs:: $(_BROWSER_FILES)
--- a/netwerk/build/Makefile.in
+++ b/netwerk/build/Makefile.in
@@ -129,17 +129,17 @@ endif
EXTRA_DSO_LDOPTS = \
$(LIBS_DIR) \
$(EXTRA_DSO_LIBS) \
$(MOZ_UNICHARUTIL_LIBS) \
$(MOZ_COMPONENT_LIBS) \
$(ZLIB_LIBS) \
$(NULL)
-ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT)))
+ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
EXTRA_DSO_LDOPTS += \
-framework SystemConfiguration \
$(TK_LIBS) \
$(NULL)
endif
ifeq ($(OS_ARCH),AIX)
EXTRA_DSO_LDOPTS += -lodm -lcfg
--- a/toolkit/profile/Makefile.in
+++ b/toolkit/profile/Makefile.in
@@ -40,15 +40,15 @@ topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
DIRS = public src
# Use Qute for non-Mac non-Phoenix apps
-ifneq (cocoa,$(MOZ_WIDGET_TOOLKIT)))
+ifneq (cocoa,$(MOZ_WIDGET_TOOLKIT))
ifndef MOZ_PHOENIX
DIRS += skin
endif
endif
include $(topsrcdir)/config/rules.mk