news: describe recently-fixed bug in vala support
[platform/upstream/automake.git] / tests / primary-prefix-couples-force-valid.test
1 #! /bin/sh
2 # Copyright (C) 2011 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 2, 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 that a user who wants to use an invalid prefix/primary
18 # combination can do so with a proper workaround.
19 # For example, this:
20 #   lib_PROGRAMS = foo
21 # is expected to cause an automake error, but this:
22 #   bardir = $(libdir)
23 #   bar_PROGRAMS = foo
24 # should work.
25
26 required=cc
27 . ./defs || Exit 1
28
29 set -e
30
31 cat >> configure.in <<'END'
32 AC_PROG_CC
33 AC_PROG_RANLIB
34 AC_OUTPUT
35 END
36
37 cat > Makefile.am <<'END'
38 my_libdir = $(libdir)
39 my_lib_PROGRAMS = foo
40
41 foodir = $(bindir)
42 foo_LIBRARIES = libquux.a
43
44 xdir = $(libexecdir)
45 x_HEADERS = bar.h
46
47 installcheck-local: test
48 .PHONY: test
49 test:
50         (cd '$(prefix)' && find .);: For debugging.
51         ls -l '$(libdir)/foo'
52         test -f '$(libdir)/foo'
53         test -x '$(libdir)/foo'
54         ls -l '$(bindir)/libquux.a'
55         test -f '$(bindir)/libquux.a'
56         ls -l '$(libexecdir)/bar.h'
57         test -f '$(libexecdir)/bar.h'
58         test ! -x '$(libexecdir)/bar.h'
59 END
60
61 cat > foo.c <<'END'
62 int main (void)
63 {
64   return 0;
65 }
66 END
67
68 cat > libquux.c <<'END'
69 int quux(void)
70 {
71   return 1;
72 }
73 END
74
75 : > bar.h
76
77 $ACLOCAL
78 $AUTOMAKE
79 $AUTOCONF
80
81 cwd=`pwd` || fatal_ "cannot get current working directory"
82 ./configure --prefix="$cwd/_inst"
83
84 $MAKE install
85 $MAKE installcheck
86 $MAKE distcheck
87
88 :