diff options
author | Samuel Thibault <sthibault@debian.org> | 2012-08-26 14:47:44 +0000 |
---|---|---|
committer | Samuel Thibault <sthibault@debian.org> | 2012-08-26 14:47:44 +0000 |
commit | d0e7daf51fc811d4756c88b0630c1a4d69ff65aa (patch) | |
tree | 395ef94512eea6f5a604e10aee7a66abf479f492 /debian | |
parent | 1aaf69b916e99592ddaebf18f9a711a68c3e8f2c (diff) | |
download | installation-guide-d0e7daf51fc811d4756c88b0630c1a4d69ff65aa.zip |
debian/rules: Fix suite name.
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 6 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 083e81cfd..54bbc0f43 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +installation-guide (20120827) UNRELEASED; urgency=low + + * debian/rules: Fix suite name. + + -- Samuel Thibault <sthibault@debian.org> Sun, 26 Aug 2012 16:47:22 +0200 + installation-guide (20120826) unstable; urgency=low [ Samuel Thibault ] diff --git a/debian/rules b/debian/rules index d23549751..e3ecb7847 100755 --- a/debian/rules +++ b/debian/rules @@ -6,7 +6,7 @@ VERSION=$(shell LC_ALL=C dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2) DATE=$(shell echo $(VERSION) | cut -d '.' -f 1) SUITE=$(shell LC_ALL=C dpkg-parsechangelog | grep ^Distribution: | cut -d ' ' -f 2) ifeq (${SUITE},unstable) -SUITE=lenny +SUITE=wheezy endif MANTMP=$(shell pwd)/debian/manual |