diff options
author | Guillem Jover <guillem@debian.org> | 2005-07-17 05:52:55 +0000 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2010-06-10 23:21:17 +0200 |
commit | c5490907f4c2306941ac1bf7f88bc387c8e9734a (patch) | |
tree | 9c7742d40895143d3f7345669a051ce20957fe97 | |
parent | ba5e70d16a0862a59de027c3ec2182fd61a52bba (diff) | |
download | inetutils-c5490907f4c2306941ac1bf7f88bc387c8e9734a.tar.gz |
Use new DEB_HOST_ARCH_OS variable
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | debian/rules | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index 08a0617..d77b392 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ inetutils (2:1.4.2+20040207-5) UNRELEASED; urgency=low * Set Maintainer to pkg-inetutils, move Jeff Bailey to Uploaders and remove Robert Millan now that he has retired. * Add a watch file. + * Use new DEB_HOST_ARCH_OS variable. -- Guillem Jover <guillem@debian.org> Sat, 9 Jul 2005 04:59:11 +0300 diff --git a/debian/rules b/debian/rules index 982eeb7..5bcbb83 100755 --- a/debian/rules +++ b/debian/rules @@ -25,7 +25,7 @@ DEB_CONFIGURE_LIBEXECDIR = "\$${prefix}/sbin" # Set proper Priority and Section clean :: -ifeq ($(DEB_HOST_GNU_SYSTEM),linux) +ifeq ($(DEB_HOST_ARCH_OS),linux) cat debian/control.in \ | sed \ -e 's/@inetutils:Priority@/optional/g' \ |