diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-08-18 22:46:31 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-08-18 22:49:43 -0400 |
commit | 0691e279121ecc2e77849b0435c079c246374798 (patch) | |
tree | 8852b317f50335995886a365311122d6a48277c5 /etc | |
parent | bump to sandbox-2.4 (diff) | |
download | sandbox-0691e279121ecc2e77849b0435c079c246374798.tar.gz sandbox-0691e279121ecc2e77849b0435c079c246374798.tar.bz2 sandbox-0691e279121ecc2e77849b0435c079c246374798.zip |
00default: fix install
The previous commit to fix duplicate dist inclusion broke the install of
the generated file. So try again but hopefully this time get it right:
- include only 00default.in in the dist
- install only 00default
URL: http://bugs.gentoo.org/333131
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/sandbox.d/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/sandbox.d/Makefile.am b/etc/sandbox.d/Makefile.am index 9e56ff1..f3fdf96 100644 --- a/etc/sandbox.d/Makefile.am +++ b/etc/sandbox.d/Makefile.am @@ -1,2 +1,3 @@ confddir = $(sysconfdir)/sandbox.d -dist_confd_DATA = 00default.in +confd_DATA = 00default +EXTRA_DIST = 00default.in |