summaryrefslogtreecommitdiff
path: root/ldpd
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2021-04-21 11:54:48 +0200
committerDavid Lamparter <equinox@opensourcerouting.org>2021-04-21 15:42:36 +0200
commit0c4285d77eb66642c7e16a0c8dfda9eea4a4a5b1 (patch)
tree731db39537468eeddd6353ed0ac41cf0bdf237b6 /ldpd
parent09781197b60f60afc3be62f3329d8c97623fc346 (diff)
build: properly split CFLAGS from AC_CFLAGS
`CFLAGS` is a "user variable", not intended to be controlled by configure itself. Let's put all the "important" stuff in AC_CFLAGS and only leave debug/optimization controls in CFLAGS. Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ldpd')
-rw-r--r--ldpd/subdir.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldpd/subdir.am b/ldpd/subdir.am
index 5fc3847c6d..b7e2ab72d6 100644
--- a/ldpd/subdir.am
+++ b/ldpd/subdir.am
@@ -64,6 +64,6 @@ ldpd_ldpd_SOURCES = ldpd/ldpd.c
ldpd_ldpd_LDADD = ldpd/libldp.a lib/libfrr.la $(LIBCAP)
ldpd_ldpd_snmp_la_SOURCES = ldpd/ldp_snmp.c
-ldpd_ldpd_snmp_la_CFLAGS = $(WERROR) $(SNMP_CFLAGS) -std=gnu11
+ldpd_ldpd_snmp_la_CFLAGS = $(AM_CFLAGS) $(SNMP_CFLAGS) -std=gnu11
ldpd_ldpd_snmp_la_LDFLAGS = -avoid-version -module -shared -export-dynamic
ldpd_ldpd_snmp_la_LIBADD = lib/libfrrsnmp.la