diff options
author | Guillem Jover <guillem@hadrons.org> | 2011-07-31 06:18:10 +0200 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2011-10-30 07:52:15 +0100 |
commit | 967f695c881a65f92c153bf7591d1abc1ed01a29 (patch) | |
tree | c7382228e6d52b6164a5d93d58c9ac10de0f3600 | |
parent | 3ef7f780e3049c0f23cb849b93bb3551e0d1e74d (diff) | |
download | inetutils-967f695c881a65f92c153bf7591d1abc1ed01a29.tar.gz |
Do not change inetutils-syslogd Section to base on non-Linux arches
That section does not exist any longer, just inherit it from the
source stanza.
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | debian/control.in | 1 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog index 67bf01d..c3be0ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,9 @@ inetutils (2:1.8-4) UNRELEASED; urgency=low allowing to pass INETD_OPTS to it on start. (Closes: #606954) * Use dh_lintian instead of manually installing the overrides. * Override upstream SUIDMODE at make time, instead of patching the source. + * Do not change inetutils-syslogd Section to base on non-Linux architectures + as that section does not exist any longer, just inherit it from the + source stanza. -- Guillem Jover <guillem@debian.org> Wed, 02 Feb 2011 05:43:10 +0100 diff --git a/debian/control.in b/debian/control.in index 033a471..04a6c4f 100644 --- a/debian/control.in +++ b/debian/control.in @@ -52,7 +52,6 @@ Description: ICMP echo tool calculate latency between the sending and the destination hosts. Package: inetutils-syslogd -Section: @syslogd:Section@ Priority: @syslogd:Priority@ Architecture: any Provides: system-log-daemon, ${syslogd:Provides} diff --git a/debian/rules b/debian/rules index 5d9980c..97660e3 100755 --- a/debian/rules +++ b/debian/rules @@ -68,14 +68,12 @@ ifeq ($(DEB_HOST_ARCH_OS),linux) sed \ -e 's/@inetutils:Priority@/extra/g' \ -e 's/@syslogd:Priority@/extra/g' \ - -e 's/@syslogd:Section@/net/g' \ < debian/control.in \ > debian/control else sed \ -e 's/@inetutils:Priority@/standard/g' \ -e 's/@syslogd:Priority@/required/g' \ - -e 's/@syslogd:Section@/base/g' \ < debian/control.in \ > debian/control endif |