summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Winter <mwinter@opensourcerouting.org>2018-05-20 07:13:02 -0700
committerMartin Winter <mwinter@opensourcerouting.org>2018-05-20 07:13:02 -0700
commitb4c554e24f93aadc5c658795d8ceaf872836a5ab (patch)
treea5dd6e4fb11e655e2da40f6c619708e5f0634663
parenta44ed5bd8c47838a2a422195658f147877f15f31 (diff)
redhat: Fix RPKI RPM build option
Signed-off-by: Martin Winter <mwinter@opensourcerouting.org>
-rw-r--r--redhat/frr.spec.in12
1 files changed, 9 insertions, 3 deletions
diff --git a/redhat/frr.spec.in b/redhat/frr.spec.in
index 362be27a5f..b3e7e31aaa 100644
--- a/redhat/frr.spec.in
+++ b/redhat/frr.spec.in
@@ -322,10 +322,10 @@ developing OSPF-API and frr applications.
%if "%{initsystem}" == "systemd"
--enable-systemd=yes \
%endif
- --enable-poll=yes
%if %{with_rpki}
- --enable-rpki
+ --enable-rpki \
%endif
+ --enable-poll=yes
make %{?_smp_mflags} MAKEINFO="makeinfo --no-split" SPHINXBUILD=%{sphinx}
@@ -586,6 +586,9 @@ rm -rf %{buildroot}
%if %{with_fpm}
%attr(755,root,root) %{_libdir}/frr/modules/zebra_fpm.so
%endif
+%if %{with_rpki}
+%attr(755,root,root) %{_libdir}/frr/modules/bgpd_rpki.so
+%endif
%attr(755,root,root) %{_libdir}/frr/modules/zebra_irdp.so
%{_bindir}/*
%config(noreplace) /etc/frr/[!v]*.conf*
@@ -632,7 +635,10 @@ rm -rf %{buildroot}
%endif
%changelog
-* Sun Mar 4 2018 Martin Winter <mwinter@opensourcerouting.org> - %{version}
+* Sun May 20 2018 Martin Winter <mwinter@opensourcerouting.org> - %{version}
+- Fixed RPKI RPM build
+
+* Sun Mar 4 2018 Martin Winter <mwinter@opensourcerouting.org>
- Add option to build with RPKI (default: disabled)
* Tue Feb 20 2018 Martin Winter <mwinter@opensourcerouting.org>