diff options
author | Gabriel Ganne <gabriel.ganne@enea.com> | 2017-01-26 15:42:39 +0100 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-01-27 01:00:44 +0000 |
commit | 714968b038dcc0265b596d653ab10aa1e4439ca2 (patch) | |
tree | 444d3d494086972d25166ea544ba3ba1ae2313f8 /build-root | |
parent | fca0c242e4edfdb05231ef18d60c14273067ff0a (diff) |
package only the vpp binaries (rpm)
The first install regexp of the vpp.spec file was too permissive and
included dpdk binaries.
Should fix rpm packaging error: Installed (but unpackaged) file(s) found:
/usr/bin/dpdk-pdump
/usr/bin/dpdk-pmdinfo
/usr/bin/dpdk-procinfo
/usr/bin/testpmd
Change-Id: Ic905307cf07b9eeadf8125aaa3e1922dcc6269b3
Signed-off-by: Gabriel Ganne <gabriel.ganne@enea.com>
Diffstat (limited to 'build-root')
-rw-r--r-- | build-root/rpm/vpp.spec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-root/rpm/vpp.spec b/build-root/rpm/vpp.spec index 9e3ad11bd39..5575b5b1b62 100644 --- a/build-root/rpm/vpp.spec +++ b/build-root/rpm/vpp.spec @@ -107,7 +107,7 @@ groupadd -f -r vpp # mkdir -p -m755 %{buildroot}%{_bindir} mkdir -p -m755 %{buildroot}%{_unitdir} -install -p -m 755 %{_mu_build_dir}/%{_vpp_install_dir}/*/bin/* %{buildroot}%{_bindir} +install -p -m 755 %{_mu_build_dir}/%{_vpp_install_dir}/vpp/bin/* %{buildroot}%{_bindir} # api mkdir -p -m755 %{buildroot}/usr/share/vpp/api |