diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:56:06 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:56:06 +0000 |
commit | cf58a7e1baf5e7d65b26f600631f355e14f802f0 (patch) | |
tree | 658a607d9030484c77b1aafd038fe575c65a5759 /debian | |
parent | 1d9fd7a2528bfb3ce95cfe65c227fafa912f38e8 (diff) |
Use $@ when touching.
Author: doogie
Date: 2000-06-04 05:37:30 GMT
Use $@ when touching.
Diffstat (limited to 'debian')
-rwxr-xr-x | debian/rules | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index 68f0427d8..d194ba1cf 100755 --- a/debian/rules +++ b/debian/rules @@ -2,7 +2,7 @@ # Made with the aid of dh_make, by Craig Small # Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess. # Some lines taken from debmake, by Christoph Lameter. -# $Id: rules,v 1.22 2000/06/04 05:36:15 doogie Exp $ +# $Id: rules,v 1.23 2000/06/04 05:37:30 doogie Exp $ # For the deb builder, you can run 'debian/rules cvs-build', which does all @@ -60,7 +60,7 @@ build-stamp: configure # Add here commands to compile the package. $(MAKE) - touch build-stamp + touch $@ clean: dh_testdir @@ -195,7 +195,7 @@ configure: $(MAKE) configure l33ch-stamp: super-l33ch - touch l33ch-stamp + touch $@ really-clean: clean -find -name Makefile.in -print0 | xargs -0r rm -f |