diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2021-07-03 10:41:57 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2021-07-03 12:16:56 +0200 |
commit | af8870dfa400f83c2317c3a22ff141a54e7b7967 (patch) | |
tree | f6056d1b82172d4f97eb42dd4e59d8a020c946b5 | |
parent | 6d107bb4582c2b57bfce6aefe1b84f527c2f4946 (diff) |
meson-template.SlackBuild: Don't ship .la files
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
-rw-r--r-- | meson-template.SlackBuild | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meson-template.SlackBuild b/meson-template.SlackBuild index b3fad40..57fdd76 100644 --- a/meson-template.SlackBuild +++ b/meson-template.SlackBuild @@ -131,6 +131,9 @@ cd build DESTDIR=$PKG ninja install cd .. +# Don't ship .la files: +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + # Strip binaries and libraries - this can be done with 'make install-strip' # in many source trees, and that's usually acceptable if so, but if not, # use this: |