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 /tools | |
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 'tools')
-rw-r--r-- | tools/subdir.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/subdir.am b/tools/subdir.am index ff41fe2c6..7713bb1ad 100644 --- a/tools/subdir.am +++ b/tools/subdir.am @@ -23,10 +23,10 @@ tools_permutations_SOURCES = tools/permutations.c tools_permutations_LDADD = lib/libfrr.la tools_gen_northbound_callbacks_SOURCES = tools/gen_northbound_callbacks.c -tools_gen_northbound_callbacks_LDADD = lib/libfrr.la -lyang +tools_gen_northbound_callbacks_LDADD = lib/libfrr.la $(LIBYANG_LIBS) tools_gen_yang_deviations_SOURCES = tools/gen_yang_deviations.c -tools_gen_yang_deviations_LDADD = lib/libfrr.la -lyang +tools_gen_yang_deviations_LDADD = lib/libfrr.la $(LIBYANG_LIBS) tools_ssd_SOURCES = tools/start-stop-daemon.c |