diff options
author | Jafar Al-Gharaibeh <Jafaral@users.noreply.github.com> | 2017-08-10 06:42:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-10 06:42:39 +0200 |
commit | 165089f1049df6f4ce33e98a9ec2a2c4b3ab849d (patch) | |
tree | 160300dbcb43c6ebc8f5689e28a33fc4da8cc5b2 | |
parent | Merge branch 'frr/pull/822' ("EVPN fixes") (diff) | |
parent | configure: restore support for --with-rfp-path= broken by PR784 (diff) | |
download | frr-165089f1049df6f4ce33e98a9ec2a2c4b3ab849d.tar.xz frr-165089f1049df6f4ce33e98a9ec2a2c4b3ab849d.zip |
Merge pull request #938 from LabNConsulting/working/master/patch/pr784-partial-backout
configure: restore support for --with-rfp-path= broken by PR784
-rwxr-xr-x | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d501c4449..574992342 100755 --- a/configure.ac +++ b/configure.ac @@ -1817,6 +1817,11 @@ AC_CONFIG_FILES([Makefile pkgsrc/ripd.sh pkgsrc/ripngd.sh pkgsrc/zebra.sh pkgsrc/eigrpd.sh]) +if test "${enable_bgp_vnc}" != "no"; then + if test "${with_rfp_path}" != "bgpd/rfp-example" ; then + AC_CONFIG_FILES([${with_rfp_path}/rfptest/Makefile ${with_rfp_path}/librfp/Makefile]) + fi +fi AC_CONFIG_FILES([solaris/Makefile]) |