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_namespace | |
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_namespace')
-rw-r--r-- | modules/pam_namespace/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/pam_namespace/Makefile.am b/modules/pam_namespace/Makefile.am index 15477329..eecc4137 100644 --- a/modules/pam_namespace/Makefile.am +++ b/modules/pam_namespace/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 = namespace.conf.5 pam_namespace.8 pam_namespace_helper.8 @@ -32,7 +32,7 @@ securelib_LTLIBRARIES = pam_namespace.la pam_namespace_la_SOURCES = pam_namespace.c md5.c argv_parse.c pam_namespace_la_LIBADD = $(top_builddir)/libpam/libpam.la @LIBSELINUX@ -secureconf_DATA = namespace.conf +dist_secureconf_DATA = namespace.conf dist_secureconf_SCRIPTS = namespace.init install-data-local: @@ -46,6 +46,6 @@ uninstall-local: -rm $(DESTDIR)$(servicedir)/pam_namespace.service if ENABLE_REGENERATE_MAN -noinst_DATA = README +dist_noinst_DATA = README -include $(top_srcdir)/Make.xml.rules endif |