diff options
author | David Lamparter <equinox@diac24.net> | 2020-04-15 10:45:08 +0200 |
---|---|---|
committer | David Lamparter <equinox@diac24.net> | 2020-04-27 09:30:01 +0200 |
commit | 2768748b88f4133d10835255845e64a4e1e365e6 (patch) | |
tree | 093a9bb724b40b5364e5704e55cb8078f1d46f71 /eigrpd | |
parent | Merge pull request #6249 from chiragshah6/yang_nb5 (diff) | |
download | frr-2768748b88f4133d10835255845e64a4e1e365e6.tar.xz frr-2768748b88f4133d10835255845e64a4e1e365e6.zip |
build: use VPATH for vtysh_scan
No need to put $(top_srcdir) everywhere.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'eigrpd')
-rw-r--r-- | eigrpd/subdir.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eigrpd/subdir.am b/eigrpd/subdir.am index e59c88b47..bf900912e 100644 --- a/eigrpd/subdir.am +++ b/eigrpd/subdir.am @@ -7,11 +7,11 @@ noinst_LIBRARIES += eigrpd/libeigrp.a sbin_PROGRAMS += eigrpd/eigrpd dist_examples_DATA += eigrpd/eigrpd.conf.sample vtysh_scan += \ - $(top_srcdir)/eigrpd/eigrp_cli.c \ - $(top_srcdir)/eigrpd/eigrp_dump.c \ - $(top_srcdir)/eigrpd/eigrp_vty.c \ + eigrpd/eigrp_cli.c \ + eigrpd/eigrp_dump.c \ + eigrpd/eigrp_vty.c \ # end -# $(top_srcdir)/eigrpd/eigrp_routemap.c +# eigrpd/eigrp_routemap.c man8 += $(MANBUILD)/frr-eigrpd.8 endif |