1 ## Included by top-level Makefile for Automake.
3 ## Copyright (C) 1995-2013 Free Software Foundation, Inc.
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 2, or (at your option)
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ## GNU General Public License for more details.
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program. If not, see <http://www.gnu.org/licenses/>.
18 ## -------------------------------------------------------------------- ##
19 ## Auxiliary scripts and files for use with "automake --add-missing". ##
20 ## -------------------------------------------------------------------- ##
22 dist_pkgvdata_DATA = \
27 # These must all be executable when installed. However, if we use
28 # _SCRIPTS, then the program transform will be applied, which is not
29 # what we want. So we make them executable by hand.
48 @for f in $(dist_script_DATA); do echo $$f; done \
52 echo " chmod +x '$(DESTDIR)$(scriptdir)/$$f'"; \
53 chmod +x "$(DESTDIR)$(scriptdir)/$$f" || st=1; \
57 installcheck-local: installcheck-executable-scripts
58 installcheck-executable-scripts:
59 @for f in $(dist_script_DATA); do echo $$f; done \
62 path="$(pkgvdatadir)/$$f"; \
63 test -x "$$path" || echo $$path; \
65 | sed 's/$$/: not executable/' \
66 | grep . 1>&2 && exit 1; exit 0
68 # vim: ft=automake noet