[SCM] Debian Packaging Handbook: wiki source branch, master, updated. 281bc107e23951882a8de0176b7e2203bc209a07

Luca Brivio lb-guest at alioth.debian.org
Mon Feb 9 23:42:55 UTC 2009


The branch, master has been updated
       via  281bc107e23951882a8de0176b7e2203bc209a07 (commit)
      from  579ec8c63d0ddf2b57bd49f3803bd1f2825a778d (commit)


- Shortlog ------------------------------------------------------------
281bc10 web commit by http://d.paleino.myopenid.com/: use $(DPATCH_STAMPFN) instead of patch/patch-stamp

Summary of changes:
 PatchSystems.adoc |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
-----------------------------------------------------------------------
Details of changes:

commit 281bc107e23951882a8de0176b7e2203bc209a07
Author: Luca Brivio <lb-guest at alioth.debian.org>
Date:   Mon Feb 9 23:42:55 2009 +0000

    web commit by http://d.paleino.myopenid.com/: use $(DPATCH_STAMPFN) instead of patch/patch-stamp

diff --git a/PatchSystems.adoc b/PatchSystems.adoc
index ce420a0..62188d8 100644
--- a/PatchSystems.adoc
+++ b/PatchSystems.adoc
@@ -57,7 +57,7 @@ include /usr/share/dpatch/dpatch.make
 <other targets>
 
 build: build-stamp
-build-stamp: patch-stamp
+build-stamp: $(DPATCH_STAMPFN)
         <do build stuff here>
 
 clean: unpatch
@@ -73,14 +73,14 @@ include /usr/share/dpatch/dpatch.make
 
 <other targets>
 
-build: patch build-stamp
-build-stamp:
+build: build-stamp
+build-stamp: $(DPATCH_STAMPFN)
         <do build stuff here>
 
 <other targets>
 
 clean: clean-patched unpatch
-clean-patched: patch-stamp
+clean-patched: $(DPATCH_STAMPFN)
         <do clean stuff here>
 
 <other targets>
@@ -91,7 +91,7 @@ The trick is to patch before executing `clean` (needed since `clean` target is e
 The hardest/longest/not-encouraged is the following (it would allow some more flexibility):
 
 ---------------------------------------------------------------------------------
-build-stamp: patch
+build-stamp: patch-stamp
         <do build stuff here>
 
 clean: clean1 unpatch

-- 
Debian Packaging Handbook: wiki source



More information about the Packaging-handbook-commits mailing list