diff options
author | David Zeuthen <davidz@redhat.com> | 2010-10-06 18:04:51 -0400 |
---|---|---|
committer | David Zeuthen <davidz@redhat.com> | 2010-10-06 18:04:51 -0400 |
commit | a459e7954bb480d62fa805010c6946c4b059a2ea (patch) | |
tree | f28b8466daca40e6955e15b4f1075ae7d5a43228 | |
parent | 544aef9dfa8c214ec1543815832e882f138b2af0 (diff) |
Forgot to add file
Signed-off-by: David Zeuthen <davidz@redhat.com>
-rw-r--r-- | data/Makefile.am | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100644 index 0000000..ab1066b --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1,29 @@ +## Process this file with automake to produce Makefile.in + +SUBDIRS = + +NULL = + +configdir = $(sysconfdir) +config_DATA = stc.conf + +# ---------------------------------------------------------------------------------------------------- + +CLEANFILES = + +EXTRA_DIST = \ + $(profile_SCRIPTS) \ + stc.conf.in \ + stc-1.pc.in \ + $(NULL) + +clean-local : + rm -f *~ $(BUILT_SOURCES) + +# By default, /etc/stc.conf and /etc/stc.conf.d are world-readable. Individual files +# in /etc/stc.conf.d can be made readable only by uid 0 etc. +# +install-exec-hook: + -chmod 644 $(DESTDIR)$(sysconfdir)/stc.conf + mkdir -p $(DESTDIR)$(sysconfdir)/stc.conf.d + -chmod 755 $(DESTDIR)$(sysconfdir)/stc.conf.d |