diff options
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 ; \ |