From: Damjan Marion Date: Tue, 22 Jan 2019 10:14:46 +0000 (+0100) Subject: cmake: supress 'Set runtime path of' noise while generatig deb packages X-Git-Tag: v19.04-rc1~621 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F59%2F16959%2F2;p=vpp.git cmake: supress 'Set runtime path of' noise while generatig deb packages Change-Id: Ib8ddce2d56034152a390ca2d3b9784673a77d2e3 Signed-off-by: Damjan Marion --- 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 ; \