maint: Update HACKING
[automake.git] / t / colon.sh
blob6a72d7fe1ae28c5f40452962e32d0db3b540bc17
1 #! /bin/sh
2 # Copyright (C) 1996-2017 Free Software Foundation, Inc.
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 2, or (at your option)
7 # any later version.
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.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
17 # Test for bug reported by Nyul Laszlo. When using the ":" syntax in
18 # AC_OUTPUT, Automake fails to find the correct file.
20 . test-init.sh
22 cat >> configure.ac <<'END'
23 AC_CONFIG_FILES([foo.h:foo.hin])
24 AC_OUTPUT
25 END
27 : > foo.hin
29 cat > Makefile.am <<'END'
30 .PHONY: test
31 test: distdir
32 ls -l . $(distdir)
33 test -f foo.h
34 test -f $(distdir)/foo.hin
35 END
37 $ACLOCAL
38 $AUTOMAKE
39 $AUTOCONF
41 ./configure
43 $MAKE test
44 $MAKE distcheck