r16571 - in /trunk/libb-utils-perl/debian: changelog rules

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Thu Mar 6 10:28:13 UTC 2008


Author: dmn
Date: Thu Mar  6 10:28:12 2008
New Revision: 16571

URL: http://svn.debian.org/wsvn/?sc=1&rev=16571
Log:
* debian/rules:
  + use "$@" when touching stamps
  + make install target depend only on install-stamp and install-stamp --
    depend on build-stamp

Modified:
    trunk/libb-utils-perl/debian/changelog
    trunk/libb-utils-perl/debian/rules

Modified: trunk/libb-utils-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libb-utils-perl/debian/changelog?rev=16571&op=diff
==============================================================================
--- trunk/libb-utils-perl/debian/changelog (original)
+++ trunk/libb-utils-perl/debian/changelog Thu Mar  6 10:28:12 2008
@@ -9,6 +9,10 @@
   [ Damyan Ivanov ]
   * Standards-Version: 3.7.3 (no changes needed)
   * debian/watch: use dist-based URL.
+  * debian/rules:
+    + use "$@" when touching stamps
+    + make install target depend only on install-stamp and install-stamp --
+      depend on build-stamp
 
  -- gregor herrmann <gregor+debian at comodo.priv.at>  Tue, 09 Oct 2007 22:27:31 +0200
 

Modified: trunk/libb-utils-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libb-utils-perl/debian/rules?rev=16571&op=diff
==============================================================================
--- trunk/libb-utils-perl/debian/rules (original)
+++ trunk/libb-utils-perl/debian/rules Thu Mar  6 10:28:12 2008
@@ -28,7 +28,7 @@
 	$(MAKE)
 	$(MAKE) test
 
-	touch build-stamp
+	touch $@
 
 clean:
 	dh_testdir
@@ -39,8 +39,8 @@
 	# Add commands to clean up after the build process here
 	[ ! -f Makefile ] || $(MAKE) realclean
 
-install: build install-stamp
-install-stamp:
+install: install-stamp
+install-stamp: build-stamp
 	dh_testdir
 	dh_testroot
 	dh_clean -k
@@ -53,7 +53,7 @@
 	# the dirs, we delete them from the deb:
 	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents --verbose $(TMP)/usr/lib/perl5
 
-	touch install-stamp
+	touch $@
 
 binary-arch:
 # We have nothing to do by default.




More information about the Pkg-perl-cvs-commits mailing list