diff options
author | Steve Langasek <vorlon@debian.org> | 2009-09-02 00:30:02 -0700 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2019-01-08 21:25:59 -0800 |
commit | c5a0b0a568901d7d1c702634ef64e323f0ea86f5 (patch) | |
tree | 8281bb303c9fd546a3f213d91a2426b6b9ed2794 | |
parent | 1ef4abe563c99e3b269a50f0571a37e4c840e52b (diff) | |
download | pam-c5a0b0a568901d7d1c702634ef64e323f0ea86f5.tar.gz pam-c5a0b0a568901d7d1c702634ef64e323f0ea86f5.tar.bz2 pam-c5a0b0a568901d7d1c702634ef64e323f0ea86f5.zip |
Use debian/clean instead of rm -f'ing files in debian/rules clean target
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | debian/clean | 1 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index bd3e7654..de512f72 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ pam (1.1.0-3) UNRELEASED; urgency=low * Move installation logic out of debian/rules into individual .install files * Drop superfluous options to dh_installchangelogs, dh_shlibdeps + * Use debian/clean instead of rm -f'ing files in debian/rules clean target -- Steve Langasek <vorlon@debian.org> Tue, 01 Sep 2009 22:23:47 -0700 diff --git a/debian/clean b/debian/clean new file mode 100644 index 00000000..62f09e76 --- /dev/null +++ b/debian/clean @@ -0,0 +1 @@ +debian/local/pam_getenv.8 diff --git a/debian/rules b/debian/rules index 6066ef14..52d802c0 100755 --- a/debian/rules +++ b/debian/rules @@ -60,8 +60,6 @@ clean-patched: dh_testdir dh_testroot [ ! -f $(BUILD_TREE)/Makefile ] || $(MAKE) -C $(BUILD_TREE) distclean - rm -f $(dl)/pam_getenv.8 - rm -f build-stamp configure-stamp dh_clean install: build |