From d5091bd681ae3c3dbc2bb222f00dd6aa3d163f9d Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Fri, 29 Jun 2012 07:41:57 -0600 Subject: [PATCH] fix lintian whines --- debian/changelog | 2 ++ debian/control | 2 +- debian/init.d | 2 +- debian/rules | 9 ++++++++- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 6bd5b8d..758bd23 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ ipip (1.1.9) UNRELEASED; urgency=low * add Vcs entries to the control file * move gbp.conf to .git/ + * turn on hardening build flags + * make lintian happier -- Bdale Garbee Fri, 29 Jun 2012 07:31:05 -0600 diff --git a/debian/control b/debian/control index 7af35a3..9d0b7e2 100644 --- a/debian/control +++ b/debian/control @@ -9,7 +9,7 @@ Vcs-Browser: http://git.gag.com/?p=debian/ipip Package: ipip Architecture: any -Depends: ${shlibs:Depends} +Depends: ${shlibs:Depends}, ${misc:Depends} Description: IP over IP Encapsulation Daemon This daemon provides an alternative to the kernel-resident support for IP encapsulation links. It is better suited for situations where there are many diff --git a/debian/init.d b/debian/init.d index c5df388..34eaf8f 100644 --- a/debian/init.d +++ b/debian/init.d @@ -4,7 +4,7 @@ # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 -# Default-Stop: 1 +# Default-Stop: 0 1 6 # Short-Description: IP over IP encapsulation daemon ### END INIT INFO diff --git a/debian/rules b/debian/rules index f8b8e73..5b1a861 100755 --- a/debian/rules +++ b/debian/rules @@ -4,7 +4,14 @@ # export DH_VERBOSE=1 -build: build-stamp +CPPFLAGS:=$(shell dpkg-buildflags --get CPPFLAGS) +CFLAGS:=$(shell dpkg-buildflags --get CFLAGS) +CXXFLAGS:=$(shell dpkg-buildflags --get CXXFLAGS) +LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS) + +build: build-arch build-indep +build-arch: build-stamp +build-indep: build-stamp build-stamp: dh_testdir $(MAKE) -- 2.30.2