From 2d923204d6b3821796fa5ff627801b79452b84df Mon Sep 17 00:00:00 2001 From: beveloper Date: Wed, 23 Jun 2004 21:31:28 +0000 Subject: [PATCH] disabled most warnigs git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8139 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bin/make/Jamfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/apps/bin/make/Jamfile b/src/apps/bin/make/Jamfile index 24cb484d74..c48b96d9f0 100644 --- a/src/apps/bin/make/Jamfile +++ b/src/apps/bin/make/Jamfile @@ -1,5 +1,9 @@ SubDir OBOS_TOP src apps bin make ; +# filter warnings we don't want here +local originalCCFlags = $(CCFLAGS) ; +CCFLAGS = [ Filter $(CCFLAGS) : -Wall -Wmissing-prototypes -Wsign-compare ] ; + SubDirHdrs [ FDirName $(SUBDIR) glob ] ; SubDirCcFlags -DHAVE_CONFIG_H ; @@ -32,3 +36,6 @@ BinCommand make : : libglob.a : make.rdef ; SubInclude OBOS_TOP src apps bin make glob ; + +# restore CCFLAGS +CCFLAGS = $(originalCCFlags) ;