doc: update Vala documentation
[automake.git] / t / distcom3.sh
blob9b42dcc2018aa04a470dce31d6d350406c30caeb
1 #! /bin/sh
2 # Copyright (C) 2001-2024 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 to make sure that non-existing common files are distributed
18 # if they are buildable.
20 . test-init.sh
22 echo AC_OUTPUT >> configure.ac
24 cat > Makefile.am << 'END'
25 README:
26 echo 'I bet you are reading me.' > README
27 test-distcommon:
28 echo ' ' $(DIST_COMMON) ' ' | grep ' README '
29 END
31 # Files required by '--gnu'.
32 : > NEWS
33 : > AUTHORS
34 : > ChangeLog
36 $ACLOCAL
38 # Should not warn about missing README, since it is a target.
39 $AUTOMAKE --add-missing --gnu >output 2>&1 || { cat output; exit 1; }
40 cat output
41 grep README output && exit 1
43 $AUTOCONF
44 ./configure
45 $MAKE test-distcommon
46 $MAKE distdir
47 test -f $distdir/README
49 # Should warn about missing README.
50 rm -f README
51 : > Makefile.am
52 AUTOMAKE_fails --add-missing --gnu
53 grep 'required file.*README.*not found' stderr