diff options
author | Damjan Marion <damarion@cisco.com> | 2021-10-06 12:07:04 +0200 |
---|---|---|
committer | Beno�t Ganne <bganne@cisco.com> | 2021-10-06 12:47:15 +0000 |
commit | fd51e849bfc00fb6b5150f485172070d0e1a6800 (patch) | |
tree | 9407b11da5166a6b5d52bb3ea25e00bf1daed48f /src/pkg | |
parent | 2c77ae484c30ca5a752c5f7ccd336d8e977db9a6 (diff) |
build: fix lib dir in debian packaging
Type: fix
Change-Id: I64b0bbe5ba2317ab03b68f140df69a94a0dd7407
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/pkg')
-rwxr-xr-x | src/pkg/debian/rules.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/debian/rules.in b/src/pkg/debian/rules.in index 2af1fe7d966..1958497f5ed 100755 --- a/src/pkg/debian/rules.in +++ b/src/pkg/debian/rules.in @@ -31,7 +31,7 @@ override_dh_install: -D CMAKE_INSTALL_PREFIX=@VPP_BINARY_DIR@/debian/$$c \ -P @CMAKE_BINARY_DIR@/cmake_install.cmake 2>&1 \ | grep -v 'Set runtime path of' ; \ - for d in bin include share ; do \ + for d in bin include share lib ; do \ if [ -d debian/$$c/$$d ] ; then \ mkdir -p debian/$$c/usr ; \ mv debian/$$c/$$d debian/$$c/usr/$$d ; \ |