r17880 - in /trunk/libdevel-repl-perl/debian: changelog rules

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Wed Mar 19 12:27:47 UTC 2008


Author: gregoa-guest
Date: Wed Mar 19 12:27:46 2008
New Revision: 17880

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=17880
Log:
debian/rules:
  - let install-stamp target depend on build-stamp
  - use $@ for touching stamp files

Modified:
    trunk/libdevel-repl-perl/debian/changelog
    trunk/libdevel-repl-perl/debian/rules

Modified: trunk/libdevel-repl-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-repl-perl/debian/changelog?rev=17880&op=diff
==============================================================================
--- trunk/libdevel-repl-perl/debian/changelog (original)
+++ trunk/libdevel-repl-perl/debian/changelog Wed Mar 19 12:27:46 2008
@@ -4,8 +4,11 @@
     (closes: #471632).
   * debian/copyright: add more files to list of additional copyright
     holders.
+  * debian/rules:
+    - let install-stamp target depend on build-stamp
+    - use $@ for touching stamp files
 
- -- gregor herrmann <gregor+debian at comodo.priv.at>  Wed, 19 Mar 2008 13:22:01 +0100
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Wed, 19 Mar 2008 13:24:12 +0100
 
 libdevel-repl-perl (1.002001-1) unstable; urgency=low
 

Modified: trunk/libdevel-repl-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdevel-repl-perl/debian/rules?rev=17880&op=diff
==============================================================================
--- trunk/libdevel-repl-perl/debian/rules (original)
+++ trunk/libdevel-repl-perl/debian/rules Wed Mar 19 12:27:46 2008
@@ -31,7 +31,7 @@
 	$(MAKE)
 	$(MAKE) test
 
-	touch build-stamp
+	touch $@
 
 clean: unpatch
 	dh_testdir
@@ -42,8 +42,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
@@ -62,7 +62,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.
@@ -70,7 +70,7 @@
 binary-indep: build install
 	dh_testdir
 	dh_testroot
-	dh_installdocs 
+	dh_installdocs
 	dh_installchangelogs Changes
 	dh_perl
 	dh_compress




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