From e040eb5a3001b069b2e8e9e8f69ac69fd56c7f9c Mon Sep 17 00:00:00 2001 From: "cls%seawood.org" Date: Tue, 3 Nov 1998 19:30:50 +0000 Subject: [PATCH] Fixed TOOLKIT_CFLAGS bug. Thanks to Mike Shaver for pointing this out --- webshell/tests/viewer/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webshell/tests/viewer/Makefile.in b/webshell/tests/viewer/Makefile.in index 891642ed4a2..115fec87cc5 100644 --- a/webshell/tests/viewer/Makefile.in +++ b/webshell/tests/viewer/Makefile.in @@ -38,7 +38,7 @@ TOOLKIT_CPPSRCS = \ nsGTKMain.cpp \ nsGTKMenu.cpp -TOOLKIT_CFLAGS = $(TK_GTK_CFLAGS) +TOOLKIT_CFLAGS += $(TK_GTK_CFLAGS) TOOLKIT_LIBS = $(TK_GTK_LIBS) else ifneq (,$(filter motif,$(MOZ_TOOLKIT))) @@ -50,7 +50,7 @@ TOOLKIT_CPPSRCS = \ nsMotifMenu.cpp \ nsUnixMain.cpp -TOOLKIT_CFLAGS = $(TK_MOTIF_CFLAGS) +TOOLKIT_CFLAGS += $(TK_MOTIF_CFLAGS) TOOLKIT_LIBS = $(TK_MOTIF_LIBS) endif endif