summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog3
-rw-r--r--debian/control.in1
-rwxr-xr-xdebian/rules2
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