rev 19547 - kde-extras/icecream/trunk/debian

Pino Toscano pino at alioth.debian.org
Thu May 23 22:28:45 UTC 2013


Author: pino
Date: 2013-05-23 22:28:44 +0000 (Thu, 23 May 2013)
New Revision: 19547

Modified:
   kde-extras/icecream/trunk/debian/changelog
   kde-extras/icecream/trunk/debian/rules
Log:
call dh_install --fail-missing

Pass --fail-missing to dh_install to make sure to not really miss anything,
removing the libtool's .la file before.


Modified: kde-extras/icecream/trunk/debian/changelog
===================================================================
--- kde-extras/icecream/trunk/debian/changelog	2013-05-23 22:23:02 UTC (rev 19546)
+++ kde-extras/icecream/trunk/debian/changelog	2013-05-23 22:28:44 UTC (rev 19547)
@@ -23,6 +23,8 @@
   * Since the build system is no more patched, there is no need to autoreconf:
     - drop the autoconf, automake, and libtool build dependencies
     - stop calling autoreconf at configure time
+  * Pass --fail-missing to dh_install to make sure to not really miss anything,
+    removing the libtool's .la file before.
 
  -- Debian KDE Extras Team <pkg-kde-extras at lists.alioth.debian.org>  Thu, 23 May 2013 20:48:57 +0200
 

Modified: kde-extras/icecream/trunk/debian/rules
===================================================================
--- kde-extras/icecream/trunk/debian/rules	2013-05-23 22:23:02 UTC (rev 19546)
+++ kde-extras/icecream/trunk/debian/rules	2013-05-23 22:28:44 UTC (rev 19547)
@@ -1,10 +1,12 @@
 #!/usr/bin/make -f
 
+DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
+
 # make the build verbose
 export V=1
 
 %:
-	dh $@ --parallel --list-missing
+	dh $@ --parallel
 
 override_dh_auto_configure:
 	dh_auto_configure -- --libexecdir='$${prefix}/lib'
@@ -15,6 +17,14 @@
 		/usr/bin/docbook2x-man $$i; \
 	done
 
+override_dh_auto_install:
+	dh_auto_install
+	# remove libtool file
+	rm -f debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libicecc.la
+
+override_dh_install:
+	dh_install --fail-missing
+
 get-orig-source-dpatch:
 	@@dh_testdir
 	@@[ -d ../tarballs/. ]||mkdir -p ../tarballs




More information about the pkg-kde-commits mailing list