diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-07 05:56:05 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-07 05:56:05 +0000 |
commit | 87d04d939bf6a6b5bf39d47ce9af84d536662b27 (patch) | |
tree | 9b5bd895adcf2aa1678848c8bb65571318b769ad /debian/rules | |
parent | Releasing progress-linux version 1.8.27-1+deb10u5progress5u1. (diff) | |
download | sudo-87d04d939bf6a6b5bf39d47ce9af84d536662b27.tar.xz sudo-87d04d939bf6a6b5bf39d47ce9af84d536662b27.zip |
Merging debian version 1.8.27-1+deb10u6.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/debian/rules b/debian/rules index 2b5375b..80f329d 100755 --- a/debian/rules +++ b/debian/rules @@ -28,12 +28,13 @@ configure-stamp: reconf-stamp # simple version NROFFPROG=/usr/bin/nroff CFLAGS="$(CFLAGS)" \ - CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" \ + CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" devdir=. \ dh_auto_configure --builddirectory=build-simple -- \ -v \ --with-all-insults \ --with-pam \ --with-fqdn \ + --with-devel=yes \ --with-logging=syslog \ --with-logfac=authpriv \ --with-env-editor \ @@ -56,6 +57,7 @@ configure-stamp: reconf-stamp -v \ --with-all-insults \ --with-pam \ + --with-devel=yes \ --with-ldap \ --with-fqdn \ --with-logging=syslog \ @@ -82,12 +84,11 @@ build-arch: build-stamp build-indep: build-stamp build-stamp: configure-stamp dh_testdir - - $(MAKE) -C build-simple - $(MAKE) -C build-ldap + cd build-simple && $(MAKE) + cd build-ldap && $(MAKE) ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) - $(MAKE) -C build-simple check + cd build-simple && $(MAKE) check endif touch build-stamp @@ -98,6 +99,7 @@ clean: rm -f configure-stamp build-stamp rm -rf build-simple build-ldap rm -f config.cache + rm -f plugins/sudoers/gram.c plugins/sudoers/gram.h dh_clean install: build-stamp |