diff options
author | joeyh <joeyh> | 2007-08-28 20:50:06 +0000 |
---|---|---|
committer | joeyh <joeyh> | 2007-08-28 20:50:06 +0000 |
commit | 1201d7c515843f1bd5d92540786aef4672e47cc1 (patch) | |
tree | ec4544193e99535f8e16a5ee82663d1e2a209ca3 | |
parent | 91b8c0c1c3c6bed0407734c444161f89a2411f99 (diff) | |
download | debhelper-1201d7c515843f1bd5d92540786aef4672e47cc1.tar.gz |
r2021: * Don't use - in front of make clean in example rules files.
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | examples/rules | 4 | ||||
-rwxr-xr-x | examples/rules.indep | 4 | ||||
-rwxr-xr-x | examples/rules.multi | 4 | ||||
-rwxr-xr-x | examples/rules.multi2 | 4 |
5 files changed, 10 insertions, 9 deletions
diff --git a/debian/changelog b/debian/changelog index 7cc099b5..e37d1124 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,8 +3,9 @@ debhelper (5.0.54) UNRELEASED; urgency=low * dh_strip: Man page reference to policy section on DEB_BUILD_OPTIONS. Closes: #437337 * dh_link: Skip self-links. Closes: #438572 + * Don't use - in front of make clean in example rules files. - -- Joey Hess <joeyh@debian.org> Fri, 17 Aug 2007 20:41:42 -0400 + -- Joey Hess <joeyh@debian.org> Tue, 28 Aug 2007 16:49:44 -0400 debhelper (5.0.53) unstable; urgency=low diff --git a/examples/rules b/examples/rules index 97f644bd..9fe997b0 100755 --- a/examples/rules +++ b/examples/rules @@ -20,8 +20,8 @@ clean: rm -f build-stamp # Add here commands to clean up after the build process. - #-$(MAKE) clean - #-$(MAKE) distclean + #$(MAKE) clean + #$(MAKE) distclean dh_clean diff --git a/examples/rules.indep b/examples/rules.indep index ecae7280..428f4e9a 100755 --- a/examples/rules.indep +++ b/examples/rules.indep @@ -22,8 +22,8 @@ clean: rm -f build-stamp # Add here commands to clean up after the build process. - #-$(MAKE) clean - #-$(MAKE) distclean + #$(MAKE) clean + #$(MAKE) distclean dh_clean diff --git a/examples/rules.multi b/examples/rules.multi index d481f15f..3ca9719b 100755 --- a/examples/rules.multi +++ b/examples/rules.multi @@ -24,8 +24,8 @@ clean: rm -f build-stamp # Add here commands to clean up after the build process. - #-$(MAKE) clean - #-$(MAKE) distclean + #$(MAKE) clean + #$(MAKE) distclean dh_clean diff --git a/examples/rules.multi2 b/examples/rules.multi2 index b97a6594..4e84c531 100755 --- a/examples/rules.multi2 +++ b/examples/rules.multi2 @@ -26,8 +26,8 @@ clean: rm -f build-stamp # Add here commands to clean up after the build process. - #-$(MAKE) clean - #-$(MAKE) distclean + #$(MAKE) clean + #$(MAKE) distclean dh_clean |