[neon/extras/choqok/Neon/release] debian: fix removal of .so symlinks

Pino Toscano null at kde.org
Wed Sep 4 11:41:47 BST 2024


Git commit 063df25c41d6fe96dec1775ec92e2bd32a678879 by Pino Toscano.
Committed on 03/01/2024 at 22:34.
Pushed by jriddell into branch 'Neon/release'.

fix removal of .so symlinks

M  +1    -0    debian/changelog
M  +2    -1    debian/rules

https://invent.kde.org/neon/extras/choqok/-/commit/063df25c41d6fe96dec1775ec92e2bd32a678879

diff --git a/debian/changelog b/debian/changelog
index 71262768..97e2af2f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -30,6 +30,7 @@ choqok (1.7.0-2) UNRELEASED; urgency=medium
     - drop the docbook2x build dependency, no more needed now
   * Use execute_after_dh_auto_install to avoid invoking dh_auto_install
     manually.
+  * Fix the removal of development .so symlinks.
 
  -- Lisandro Damián Nicanor Pérez Meyer <lisandro at debian.org>  Sun, 22 Nov 2020 21:55:15 -0300
 
diff --git a/debian/rules b/debian/rules
index d242b639..bf0144e4 100755
--- a/debian/rules
+++ b/debian/rules
@@ -7,4 +7,5 @@
 	dh $@ --with kf5
 
 execute_after_dh_auto_install:
-	rm -vf debian/choqok/usr/lib/*.so
+	# remove symlinks of private libraries
+	find debian/choqok -name '*.so' -type l -print -delete



More information about the Neon-commits mailing list