From ba2c36c185fa3a4b235ea4dc0b61d2e127bbfb98 Mon Sep 17 00:00:00 2001 From: "briano%netscape.com" Date: Thu, 20 May 1999 23:17:03 +0000 Subject: [PATCH] Fixed a bug that only exhibited itself if NO_STATIC_LIB was defined. The tools (../tools) require that libxpt.a gets built no matter what, and that wasn't happening. git-svn-id: svn://10.0.0.236/trunk@32429 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpcom/libxpt/src/Makefile.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mozilla/xpcom/libxpt/src/Makefile.in b/mozilla/xpcom/libxpt/src/Makefile.in index 032ae4a2e9b..46499e3ff55 100644 --- a/mozilla/xpcom/libxpt/src/Makefile.in +++ b/mozilla/xpcom/libxpt/src/Makefile.in @@ -37,4 +37,10 @@ REQUIRES = $(MODULE) # available to xpidl, which also must be built early. export:: libs +# +# Because ../tools/Makefile.in requires libxpt.a, we have to force the +# static lib to be built, even if NO_STATIC_LIB is defined. +# +override NO_STATIC_LIB= + include $(topsrcdir)/config/rules.mk