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_motd | |
parent | d9fe742a06af41711faba73d2f97f4d13b1b0534 (diff) | |
download | linux-pam-git-d8a518391c4fd93a05e19d145a01bdc8f54a2ff8.tar.gz |
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_motd')
-rw-r--r-- | modules/pam_motd/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_motd/Makefile.am b/modules/pam_motd/Makefile.am index 2bf5917f..46f4673c 100644 --- a/modules/pam_motd/Makefile.am +++ b/modules/pam_motd/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_motd.8 |