summaryrefslogtreecommitdiff
path: root/modules/pam_unix
diff options
context:
space:
mode:
authorDmitry V. Levin <ldv@altlinux.org>2020-05-03 01:18:44 +0000
committerDmitry V. Levin <ldv@altlinux.org>2020-05-03 12:21:11 +0000
commit97887fd27d83278d045f69759c9d45730c6e01c3 (patch)
tree512bef02eeeff816607f7b6377d74cd052cd99b7 /modules/pam_unix
parentd37f70b2dcb813311199200598ee6d4fc1ada52b (diff)
modules/*/Makefile.am: add dist_ prefix to *_DATA
... and remove $(DATA) from EXTRA_DIST. The change is performed automatically using the following script: sed -i 's/^[a-z]*_DATA/dist_&/; /^EXTRA_DIST/ s/ \$(DATA)//' modules/*/Makefile.am
Diffstat (limited to 'modules/pam_unix')
-rw-r--r--modules/pam_unix/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/pam_unix/Makefile.am b/modules/pam_unix/Makefile.am
index cfffded5..85fdeb41 100644
--- a/modules/pam_unix/Makefile.am
+++ b/modules/pam_unix/Makefile.am
@@ -5,7 +5,7 @@
CLEANFILES = *~
MAINTAINERCLEANFILES = $(MANS) README
-EXTRA_DIST = $(DATA) md5.c md5_crypt.c lckpwdf.-c $(MANS) $(XMLS) $(TESTS) CHANGELOG
+EXTRA_DIST = md5.c md5_crypt.c lckpwdf.-c $(MANS) $(XMLS) $(TESTS) CHANGELOG
if HAVE_DOC
man_MANS = pam_unix.8 unix_chkpwd.8 unix_update.8
@@ -57,6 +57,6 @@ unix_update_LDFLAGS = @PIE_LDFLAGS@
unix_update_LDADD = @LIBCRYPT@ @LIBSELINUX@
if ENABLE_REGENERATE_MAN
-noinst_DATA = README
+dist_noinst_DATA = README
-include $(top_srcdir)/Make.xml.rules
endif