From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=coreos.com; s=google; h=from:to:subject:date:message-id:mime-version; bh=RHKB7hHgi9fmqevAPGeqWBbzPvVxTUjPthrT9BUmSQs=; b=a0zSL27WRyJcR92ioSog3uUhR7sT80u9RuIoZjVzFI6yr7s75yinhvYn7NSRSdn3zu 7HRTKlZfhIstQ3ULXRRh07iErqIfFf3QgcsXP6P4MyRSsVtt+YrXT32qYwA+phFnGvl9 k2NZY52qINTIsfeK+25YA9IItQ2jcw1ufbdZQ= From: David Michael Date: Sat, 13 May 2017 19:23:34 -0700 Message-ID: <87pofci3bt.fsf@coreos.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Bridge] [PATCH] libbridge: Include the configured CFLAGS when compiling List-Id: Linux Ethernet Bridging List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: bridge@lists.linux-foundation.org --- Hi, When compiling bridge-utils, the CFLAGS set during "configure" are only used in the brctl directory. Can they be included in libbridge, too? Thanks. David libbridge/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbridge/Makefile.in b/libbridge/Makefile.in index 20512c4..4e1cddc 100644 --- a/libbridge/Makefile.in +++ b/libbridge/Makefile.in @@ -5,7 +5,7 @@ AR=ar RANLIB=@RANLIB@ CC=@CC@ -CFLAGS = -Wall -g $(KERNEL_HEADERS) +CFLAGS = -Wall -g $(KERNEL_HEADERS) @CFLAGS@ prefix=@prefix@ exec_prefix=@exec_prefix@ -- 2.7.4