diff options
author | Tobias Klauser <tklauser@argon.tklauser.home> | 2007-08-17 15:45:14 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@argon.tklauser.home> | 2007-08-17 15:45:14 +0200 |
commit | 6bb13dc36d2ce783dfb4a157983d8fbb7baa3755 (patch) | |
tree | e679674cf31ff4b30db74bbdc19d9ce3121f494c | |
parent | 032941b6532127263a11088a30cf4480547abeba (diff) |
* Update debhelper compatibility level from 4 to 515.6-4
* Do not ignore error messages in the clean target of debian/rules
-rw-r--r-- | debian/changelog | 4 | ||||
-rw-r--r-- | debian/compat | 2 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
4 files changed, 6 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 43e2caa..6283f18 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,10 @@ cscope (15.6-4) unstable; urgency=low * Fix a typo in xcscope.el (Closes: #438170) + * Update debhelper compatibility level from 4 to 5 + * Do not ignore error messages in the clean target of debian/rules - -- Tobias Klauser <tklauser@access.unizh.ch> Thu, 16 Aug 2007 13:43:01 +0200 + -- Tobias Klauser <tklauser@access.unizh.ch> Fri, 17 Aug 2007 15:34:56 +0200 cscope (15.6-3) unstable; urgency=low diff --git a/debian/compat b/debian/compat index b8626c4..7ed6ff8 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -4 +5 diff --git a/debian/control b/debian/control index 175a823..14493b3 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: cscope Section: devel Priority: optional Maintainer: Tobias Klauser <tklauser@access.unizh.ch> -Build-Depends: debhelper (>= 4), dpatch, autotools-dev, bison, flex, libncurses5-dev +Build-Depends: debhelper (>= 5), dpatch, autotools-dev, bison, flex, libncurses5-dev Standards-Version: 3.7.2 Package: cscope diff --git a/debian/rules b/debian/rules index 22650f4..702a0a9 100755 --- a/debian/rules +++ b/debian/rules @@ -37,7 +37,7 @@ clean: unpatch dh_testroot rm -f build-stamp - -$(MAKE) distclean + [ ! -f Makefile ] || $(MAKE) distclean ifneq "$(wildcard /usr/share/misc/config.sub)" "" cp -f /usr/share/misc/config.sub config.sub |