Reword the copyright notices to match what's suggested in GPLv3.
[platform/upstream/automake.git] / tests / output8.test
1 #! /bin/sh
2 # Copyright (C) 2003  Free Software Foundation, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Check AC_CONFIG_FILES support for files starting with `../'.
18 # Report from Bruno Haible.
19
20 . ./defs || exit 1
21
22 set -e
23
24 mkdir testdir
25 cd testdir
26
27 mv ../configure.in .
28 cat >> configure.in << END
29 AC_CONFIG_FILES([a/foo.sh:../testdir/a/foo.sh.in])
30 AC_CONFIG_FILES([a/Makefile])
31 AC_OUTPUT
32 END
33
34 mkdir a
35
36 echo SUBDIRS = a >Makefile.am
37 : >a/Makefile.am
38
39 echo foo >a/foo.sh.in
40
41 $ACLOCAL
42 $AUTOCONF
43 $AUTOMAKE --add-missing
44
45 ./configure
46 $MAKE
47 test "`cat a/foo.sh`" = foo
48
49 $sleep
50 echo 'bar' >a/foo.sh.in
51
52 cd a
53 $MAKE foo.sh
54 test "`cat foo.sh`" = bar