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