[Pkg-coolkey-commits] r15 - in /coolkey/trunk/debian: changelog rules

rousseau at users.alioth.debian.org rousseau at users.alioth.debian.org
Sun Jan 6 12:54:22 UTC 2008


Author: rousseau
Date: Sun Jan  6 12:54:21 2008
New Revision: 15

URL: http://svn.debian.org/wsvn/pkg-coolkey/?sc=1&rev=15
Log:
do not ignore $(MAKE) clean result
(debian-rules-ignores-make-clean-error lintian warning)

Modified:
    coolkey/trunk/debian/changelog
    coolkey/trunk/debian/rules

Modified: coolkey/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/changelog?rev=15&op=diff
==============================================================================
--- coolkey/trunk/debian/changelog (original)
+++ coolkey/trunk/debian/changelog Sun Jan  6 12:54:21 2008
@@ -5,8 +5,10 @@
     Closes: #456877 "coolkey: FTBFS: /usr/bin/ld: cannot find -lsoftokn3"
   * debian/control: Standards-Version: 3.7.2.2 -> 3.7.3. No change needed
   * use a debian/compat file instead of DH_COMPAT in debian/rules
+  * debian/rules: do not ignore $(MAKE) clean result
+    (debian-rules-ignores-make-clean-error lintian warning)
 
- -- Ludovic Rousseau <rousseau at debian.org>  Sun, 06 Jan 2008 13:44:22 +0100
+ -- Ludovic Rousseau <rousseau at debian.org>  Sun, 06 Jan 2008 13:52:47 +0100
 
 coolkey (1.1.0-2) unstable; urgency=low
 

Modified: coolkey/trunk/debian/rules
URL: http://svn.debian.org/wsvn/pkg-coolkey/coolkey/trunk/debian/rules?rev=15&op=diff
==============================================================================
--- coolkey/trunk/debian/rules (original)
+++ coolkey/trunk/debian/rules Sun Jan  6 12:54:21 2008
@@ -48,7 +48,8 @@
 	rm -f build-stamp configure-stamp
 
 	# Add here commands to clean up after the build process.
-	-$(MAKE) clean
+	if [ -e Makefile ] ; then \
+		$(MAKE) clean ; fi
 
 	# Clean up after configure:
 	rm -f config.status




More information about the Pkg-coolkey-commits mailing list