diff options
author | Steve Langasek <vorlon@debian.org> | 2019-01-05 22:53:38 -0800 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2019-01-08 22:12:52 -0800 |
commit | 11fa978cb89a922c0fd01d7ab8b17006a2d7cb84 (patch) | |
tree | a6848c7d377fa38b2e63e7f7b158573c26683d48 | |
parent | f704a32c74493ce57b6fb1a272df3dcd3bc27110 (diff) | |
download | pam-11fa978cb89a922c0fd01d7ab8b17006a2d7cb84.tar.gz pam-11fa978cb89a922c0fd01d7ab8b17006a2d7cb84.tar.bz2 pam-11fa978cb89a922c0fd01d7ab8b17006a2d7cb84.zip |
Use DEB_BUILD_PROFILES instead of the obsolete DEB_BUILD_PROFILE.
Bug-Debian: https://bugs.debian.org/907492
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index cc27abc1..d20f58d0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,8 @@ pam (1.1.8-4) UNRELEASED; urgency=medium setup). * Actually remove Roger Leigh from uploaders (change not included in previous upload). Thanks Roger for your contributions to Debian! + * Use DEB_BUILD_PROFILES instead of the obsolete DEB_BUILD_PROFILE. + Closes: #907492. -- Steve Langasek <vorlon@debian.org> Wed, 09 Apr 2014 14:04:10 -0700 diff --git a/debian/control b/debian/control index 6e7b79d6..e6aaadf3 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: optional Uploaders: Sam Hartman <hartmans@debian.org> Maintainer: Steve Langasek <vorlon@debian.org> Standards-Version: 3.9.8 -Build-Depends: libcrack2-dev (>= 2.8), bzip2, debhelper (>= 9), quilt (>= 0.48-1), flex, libdb-dev, libselinux1-dev [linux-any], po-debconf, dh-autoreconf, autopoint, libaudit-dev [linux-any], pkg-config, libfl-dev, libfl-dev:native, docbook-xsl, docbook-xml, xsltproc, libxml2-utils, w3m +Build-Depends: libcrack2-dev (>= 2.8), bzip2, debhelper (>= 9), quilt (>= 0.48-1), flex, libdb-dev, libselinux1-dev [linux-any], po-debconf, dh-autoreconf, autopoint, libaudit-dev [linux-any] <!stage1>, pkg-config, libfl-dev, libfl-dev:native, docbook-xsl, docbook-xml, xsltproc, libxml2-utils, w3m Build-Conflicts-Indep: fop Build-Conflicts: libdb4.2-dev, libxcrypt-dev Vcs-Browser: https://salsa.debian.org/vorlon/pam diff --git a/debian/rules b/debian/rules index 1bb42123..3d007238 100755 --- a/debian/rules +++ b/debian/rules @@ -21,7 +21,7 @@ dl = $(d)/local dh $@ --with quilt,autoreconf # avoid libaudit-dev when bootstrapping -ifneq (,$(filter $(DEB_BUILD_PROFILE),stage1)) +ifneq (,$(filter stage1,$(DEB_BUILD_PROFILES))) CONFIGURE_OPTS += --disable-audit endif |