diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2021-07-03 10:21:57 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2021-07-03 10:21:57 +0200 |
commit | 1c984ac38e85f62ec94310748586bdc877f1d9dc (patch) | |
tree | 9802980dccc6786e6160ec62600e9d72612406d2 | |
parent | b3d8248a4373a577e62fa9cef001810eddeba280 (diff) |
cmake-template: Use 'make install/strip'
Signed-off-by: Heinz Wiesinger <pprkut@slackuilds.org>
-rw-r--r-- | cmake-template.SlackBuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake-template.SlackBuild b/cmake-template.SlackBuild index 831f685..0f54d3b 100644 --- a/cmake-template.SlackBuild +++ b/cmake-template.SlackBuild @@ -109,7 +109,7 @@ cd build -DMAN_INSTALL_DIR=/usr/man \ -DCMAKE_BUILD_TYPE=Release .. make - make install DESTDIR=$PKG + make install/strip DESTDIR=$PKG cd .. # Strip binaries and libraries - this can be done with 'make install-strip' |