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 /debian/rules | |
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
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
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 |