From 3a9d2844d75c3cb600104980dfb3ce16b513d2c1 Mon Sep 17 00:00:00 2001 From: Julien Lavergne Date: Wed, 1 Aug 2012 22:23:25 +0200 Subject: [PATCH] * debian/rules: - Remove COPYING files in debian/tmp. --- debian/changelog | 2 ++ debian/rules | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 3023345..d3052c8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,8 @@ lubuntu-artwork (0.30) UNRELEASED; urgency=low - Remove direct depends of lubuntu-artwork package for gtk engines. * debian/lubuntu-icon-theme.install: - Install only default lubuntu icon theme. + * debian/rules: + - Remove COPYING files in debian/tmp. -- Julien Lavergne Wed, 18 Jul 2012 22:59:36 +0200 diff --git a/debian/rules b/debian/rules index 85dc6c9..a2624ad 100755 --- a/debian/rules +++ b/debian/rules @@ -10,9 +10,10 @@ override_dh_auto_build: $(MAKE) DESTDIR=$(CURDIR)/debian/tmp override_dh_install: + # Make lintian happy by not installing extra copyright files. + find $(CURDIR)/debian/tmp -name "COPYING" -delete dh_install for d in $$(find $(CURDIR)/debian/lubuntu-icon-theme/usr/share/icons -mindepth 2 -maxdepth 2 -type d) ; do \ (cd $$d; for c in *; do /usr/lib/icon-naming-utils/icon-name-mapping -c $$c; done); \ done - # Make lintian happy by not installing extra copyright files. - find . -name "COPYING" -delete +