news: describe recently-fixed bug in vala support
[platform/upstream/automake.git] / tests / pr300-ltlib.test
1 #! /bin/sh
2 # Copyright (C) 2002, 2007, 2008, 2009, 2010, 2012 Free Software
3 # Foundation, Inc.
4 #
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)
8 # any later version.
9 #
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.
14 #
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/>.
17
18 # Make sure that installing subdirectory libtool libraries works.
19 # PR/300
20
21 required='libtoolize gcc'
22 . ./defs || Exit 1
23
24 set -e
25
26 cat >> configure.in << 'END'
27 AC_PROG_CC
28 AC_PROG_LIBTOOL
29 AC_OUTPUT
30 END
31
32 cat > Makefile.am << 'END'
33 lib_LTLIBRARIES = subdir/liba.la
34 subdir_liba_la_SOURCES = a.c
35
36 nobase_lib_LTLIBRARIES = subdir/libb.la
37 subdir_libb_la_SOURCES = a.c
38 END
39
40 cat > a.c << 'END'
41 int i = 3;
42 END
43
44 ## A rule in the Makefile should create subdir
45 # mkdir subdir
46
47 libtoolize
48 $ACLOCAL
49 $AUTOCONF
50 $AUTOMAKE --copy --add-missing
51
52 # We pass '--libdir' explicitly, to avoid spurious failures due to users
53 # or distributions possibly overriding '${libdir}' in their $CONFIG_SITE
54 # file (for example, defining it to '${prefix}/lib64' on 64-bit systems,
55 # as is the case with openSUSE 12.1).  See automake bug#10426.
56 cwd=`pwd` || Exit 99
57 ./configure --prefix "$cwd/inst" --libdir "$cwd/inst/lib"
58
59 $MAKE V=1 >stdout || { cat stdout; Exit 1; }
60 cat stdout
61
62 grep 'liba.la .*-rpath .*lib' stdout
63 grep 'liba.la .*-rpath .*lib/subdir' stdout && Exit 1
64 grep 'libb.la .*-rpath .*lib/subdir' stdout
65
66 test -f subdir/liba.la
67 test -f subdir/libb.la
68
69 $MAKE install 2>stderr || { cat stderr >&2; Exit 1; }
70 cat stderr >&2
71 grep 'remember.*--finish' stderr && Exit 1
72
73 test -f inst/lib/liba.la
74 test -f inst/lib/subdir/libb.la
75
76 $MAKE uninstall
77
78 test -f inst/lib/liba.la && Exit 1
79 test -f inst/lib/subdir/libb.la && Exit 1
80
81 $MAKE install-strip
82
83 test -f inst/lib/liba.la
84 test -f inst/lib/subdir/libb.la
85
86 :