diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2020-05-03 01:18:44 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2020-05-03 12:21:11 +0000 |
commit | 97887fd27d83278d045f69759c9d45730c6e01c3 (patch) | |
tree | 512bef02eeeff816607f7b6377d74cd052cd99b7 /modules/pam_sepermit | |
parent | d37f70b2dcb813311199200598ee6d4fc1ada52b (diff) | |
download | pam-97887fd27d83278d045f69759c9d45730c6e01c3.tar.gz pam-97887fd27d83278d045f69759c9d45730c6e01c3.tar.bz2 pam-97887fd27d83278d045f69759c9d45730c6e01c3.zip |
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_sepermit')
-rw-r--r-- | modules/pam_sepermit/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/pam_sepermit/Makefile.am b/modules/pam_sepermit/Makefile.am index 488e81ac..ff351fd6 100644 --- a/modules/pam_sepermit/Makefile.am +++ b/modules/pam_sepermit/Makefile.am @@ -6,7 +6,7 @@ CLEANFILES = *~ MAINTAINERCLEANFILES = $(MANS) README -EXTRA_DIST = $(DATA) $(MANS) $(XMLS) $(TESTS) +EXTRA_DIST = $(MANS) $(XMLS) $(TESTS) if HAVE_DOC man_MANS = pam_sepermit.8 sepermit.conf.5 @@ -29,13 +29,13 @@ if HAVE_VERSIONING pam_sepermit_la_LDFLAGS += -Wl,--version-script=$(srcdir)/../modules.map endif -secureconf_DATA = sepermit.conf +dist_secureconf_DATA = sepermit.conf securelib_LTLIBRARIES = pam_sepermit.la install-data-local: mkdir -p $(DESTDIR)$(sepermitlockdir) if ENABLE_REGENERATE_MAN -noinst_DATA = README +dist_noinst_DATA = README -include $(top_srcdir)/Make.xml.rules endif |