ceed66c9ec1d00fe5d074f0a66f59fb8477df0e5
[platform/upstream/automake.git] / tests / instdir.test
1 #! /bin/sh
2 # Copyright (C) 2009  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 3, 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 # If $(foodir) is the empty string, then nothing should be installed there.
18 # This test only ensures this if $(foo_PRIMARY) is also empty, see
19 # instdir2.test and siblings instdir-*.test for nonempty contents.
20
21 . ./defs || Exit 1
22
23 set -e
24
25 cat >>configure.in <<'END'
26 AC_SUBST([foodir], ['${datadir}'/foo])
27 AC_OUTPUT
28 END
29
30 cat >Makefile.am <<'END'
31 bin_SCRIPTS =
32 nobase_bin_SCRIPTS =
33 data_DATA =
34 nobase_data_DATA =
35 include_HEADERS =
36 nobase_include_HEADERS =
37 foo_DATA =
38 nobase_foo_DATA =
39 bardir = $(datadir)/bar
40 bar_DATA =
41 nobase_bar_DATA =
42 man1_MANS =
43 man_MANS =
44 notrans_man1_MANS =
45 notrans_man_MANS =
46 END
47
48 $ACLOCAL
49 $AUTOCONF
50 $AUTOMAKE --add-missing
51
52 instdir=`pwd`/inst
53 destdir=`pwd`/dest
54 mkdir build
55 cd build
56 ../configure --prefix="$instdir"
57 $MAKE
58
59 bindir= datadir= includedir= foodir= bardir= man1dir= man2dir=
60 export bindir datadir includedir foodir bardir man1dir man2dir
61
62 $MAKE -e install
63 test ! -d "$instdir"
64 $MAKE -e install DESTDIR="$destdir"
65 test ! -d "$instdir"
66 test ! -d "$destdir"
67 $MAKE -e uninstall > stdout || { cat stdout; Exit 1; }
68 cat stdout
69 grep 'rm -f' stdout && Exit 1
70 $MAKE -e uninstall DESTDIR="$destdir"
71 :