From c6d5ab3cb4a9b633405fd5c1b3238e88dacd50d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Mon, 21 Jun 2004 20:39:36 +0000 Subject: [PATCH] lower warning level git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8102 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/bin/diffutils-2.8.1/Jamfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/apps/bin/diffutils-2.8.1/Jamfile b/src/apps/bin/diffutils-2.8.1/Jamfile index 1215ea7bbe..b7ddb0688b 100644 --- a/src/apps/bin/diffutils-2.8.1/Jamfile +++ b/src/apps/bin/diffutils-2.8.1/Jamfile @@ -1,4 +1,11 @@ SubDir OBOS_TOP src apps bin diffutils-2.8.1 ; +# filter warnings we don't want here +local originalCCFlags = $(CCFLAGS) ; +CCFLAGS = [ Filter $(CCFLAGS) : -Wall -Wmissing-prototypes -Wsign-compare ] ; + SubInclude OBOS_TOP src apps bin diffutils-2.8.1 lib ; SubInclude OBOS_TOP src apps bin diffutils-2.8.1 src ; + +# restore CCFLAGS +CCFLAGS = $(originalCCFlags) ;