diff options
author | David Lamparter <equinox@diac24.net> | 2019-01-30 18:11:54 +0100 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2019-01-30 19:13:51 +0100 |
commit | fdbd8086b1e1c4844570d902ce093ce73c524664 (patch) | |
tree | c70c224a77272fd310789e73e7d04b244605931f /ripd/subdir.am | |
parent | build, lib/yang: bake in extensions if possible (v2) (diff) | |
download | frr-fdbd8086b1e1c4844570d902ce093ce73c524664.tar.xz frr-fdbd8086b1e1c4844570d902ce093ce73c524664.zip |
build: fix a whole bunch of *FLAGS
- some target_CFLAGS that needed to include AM_CFLAGS didn't do so
- libyang/sysrepo/sqlite3/confd CFLAGS + LIBS weren't used at all
- consistently use $(FOO_CFLAGS) instead of @FOO_CFLAGS@
- 2 dependencies were missing for clippy
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'ripd/subdir.am')
-rw-r--r-- | ripd/subdir.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripd/subdir.am b/ripd/subdir.am index 1c2f8d64c..2a63cc522 100644 --- a/ripd/subdir.am +++ b/ripd/subdir.am @@ -44,7 +44,7 @@ noinst_HEADERS += \ ripd/ripd.h \ # end -ripd_ripd_LDADD = ripd/librip.a lib/libfrr.la @LIBCAP@ +ripd_ripd_LDADD = ripd/librip.a lib/libfrr.la $(LIBCAP) ripd_ripd_SOURCES = \ ripd/rip_main.c \ # end |