aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Michael <david.michael@coreos.com>2017-05-13 19:23:34 -0700
committerStephen Hemminger <stephen@networkplumber.org>2017-05-15 08:56:22 -0700
commit7b421143d1427e17380ff5bf93ef8fc718428c83 (patch)
tree0ee0c15165e6fda00b788cbb9b2ce8eaa1293e27
parentb9841b03ed7403fc992e6216a5b08c74362b13e5 (diff)
downloadbridge-utils-7b421143d1427e17380ff5bf93ef8fc718428c83.tar.gz
libbridge: Include the configured CFLAGS when compiling
When compiling bridge-utils, the CFLAGS set during "configure" were only used in the brctl directory. Set for libbridge as well.
-rw-r--r--libbridge/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbridge/Makefile.in b/libbridge/Makefile.in
index 20512c4..7932bfe 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 @CFLAGS@ $(KERNEL_HEADERS)
prefix=@prefix@
exec_prefix=@exec_prefix@