From: joeyh Date: Tue, 28 Aug 2007 20:50:06 +0000 (+0000) Subject: r2021: * Don't use - in front of make clean in example rules files. X-Git-Tag: 5.0.54~2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=1201d7c515843f1bd5d92540786aef4672e47cc1;p=debhelper.git r2021: * Don't use - in front of make clean in example rules files. --- diff --git a/debian/changelog b/debian/changelog index 7cc099b..e37d112 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 Fri, 17 Aug 2007 20:41:42 -0400 + -- Joey Hess Tue, 28 Aug 2007 16:49:44 -0400 debhelper (5.0.53) unstable; urgency=low diff --git a/examples/rules b/examples/rules index 97f644b..9fe997b 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 ecae728..428f4e9 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 d481f15..3ca9719 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 b97a659..4e84c53 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