diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2020-04-27 15:34:04 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2020-04-27 15:34:04 +0000 |
commit | d8a518391c4fd93a05e19d145a01bdc8f54a2ff8 (patch) | |
tree | aef33058c823be71037d5c1865fa274bcadc2e86 /modules/pam_loginuid | |
parent | d9fe742a06af41711faba73d2f97f4d13b1b0534 (diff) | |
download | pam-d8a518391c4fd93a05e19d145a01bdc8f54a2ff8.tar.gz pam-d8a518391c4fd93a05e19d145a01bdc8f54a2ff8.tar.bz2 pam-d8a518391c4fd93a05e19d145a01bdc8f54a2ff8.zip |
modules/*/Makefile.am: replace README with $(DATA) in EXTRA_DIST
Since the GNU Automake distributes README files by default, the only
reason why README had to be listed in EXTRA_DIST was to make these
README files generated.
Since README is also listed in noinst_DATA, we can safely replace
README in EXTRA_DIST with $(DATA), this also opens the way for
further EXTRA_DIST cleanup.
* modules/*/Makefile.am (EXTRA_DIST): Replace README with $(DATA).
Diffstat (limited to 'modules/pam_loginuid')
-rw-r--r-- | modules/pam_loginuid/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_loginuid/Makefile.am b/modules/pam_loginuid/Makefile.am index 32898933..05955ec3 100644 --- a/modules/pam_loginuid/Makefile.am +++ b/modules/pam_loginuid/Makefile.am @@ -5,7 +5,7 @@ CLEANFILES = *~ MAINTAINERCLEANFILES = $(MANS) README -EXTRA_DIST = README $(MANS) $(XMLS) $(TESTS) +EXTRA_DIST = $(DATA) $(MANS) $(XMLS) $(TESTS) if HAVE_DOC man_MANS = pam_loginuid.8 |