]> granicus.if.org Git - shadow/commitdiff
* etc/pam.d/Makefile.am: Distribute all pam.d files, even if
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Tue, 21 Apr 2009 22:16:17 +0000 (22:16 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Tue, 21 Apr 2009 22:16:17 +0000 (22:16 +0000)
ACCT_TOOLS_SETUID is not enabled.

ChangeLog
etc/pam.d/Makefile.am

index 8e081c4cae46675c4fee06fc7e39b546c882e84b..177ba7bb8c4389a33b3966db00303ae631436ad7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-04-21  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * etc/pam.d/Makefile.am: Distribute all pam.d files, even if
+       ACCT_TOOLS_SETUID is not enabled.
+
 2009-04-21  Nicolas François  <nicolas.francois@centraliens.net>
 
        * lib/shadowmem.c: Added spw_free().
index 293c1e5062a1c4b62c971b88226c49905503267d..d967eb95026a47956f4d8377930d362aa78744db 100644 (file)
@@ -9,8 +9,7 @@ pamd_files = \
        passwd \
        su
 
-if ACCT_TOOLS_SETUID
-pamd_files += \
+pamd_acct_tools_files = \
        chage \
        chgpasswd \
        chpasswd \
@@ -21,11 +20,13 @@ pamd_files += \
        useradd \
        userdel \
        usermod
-endif
 
 if USE_PAM
 pamddir = $(sysconfdir)/pam.d
 pamd_DATA = $(pamd_files)
+if ACCT_TOOLS_SETUID
+pamd_DATA += $(pamd_acct_tools_files)
+endif
 endif
 
-EXTRA_DIST = $(pamd_files)
+EXTRA_DIST = $(pamd_files) $(pamd_acct_tools_files)