diff options
author | Damjan Marion <damarion@cisco.com> | 2019-01-22 11:14:46 +0100 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-01-22 10:59:26 +0000 |
commit | d734b8db0748c765c37eca21c9ed683ac4c0d762 (patch) | |
tree | 83ef2bbcd6cbb2c839aa44b534fc5531a14659fc /src/pkg/debian | |
parent | 691b7d5769f6ee84bbc85fe3837dc3e5ccddadbc (diff) |
cmake: supress 'Set runtime path of' noise while generatig deb packages
Change-Id: Ib8ddce2d56034152a390ca2d3b9784673a77d2e3
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/pkg/debian')
-rwxr-xr-x | src/pkg/debian/rules.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pkg/debian/rules.in b/src/pkg/debian/rules.in index f1917e6ea0a..0351ee503e6 100755 --- a/src/pkg/debian/rules.in +++ b/src/pkg/debian/rules.in @@ -28,7 +28,8 @@ override_dh_install: -D CMAKE_INSTALL_CONFIG_NAME=@CMAKE_BUILD_TYPE@ \ -D CMAKE_INSTALL_COMPONENT=$$c \ -D CMAKE_INSTALL_PREFIX=@CMAKE_BINARY_DIR@/debian/$$c \ - -P @CMAKE_BINARY_DIR@/cmake_install.cmake ; \ + -P @CMAKE_BINARY_DIR@/cmake_install.cmake 2>&1 \ + | grep -v 'Set runtime path of' ; \ if [ -d debian/$$c/lib ] ; then \ mv debian/$$c/lib debian/$$c/$(DEB_HOST_MULTIARCH) ; \ mkdir -p debian/$$c/usr/lib ; \ |