summaryrefslogtreecommitdiff
path: root/tests/instdir-empty.test
blob: f699583492fac20ea4cac2ee6fa46ad739d1d3d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#! /bin/sh
# Copyright (C) 2012 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

# An empty "foo_PRIMARY" declaration should cause "make install" to create
# directory $(foodir).  Suggested in discussion on automake bug#10997.

. ./defs || Exit 1

set -e

echo AC_OUTPUT >> configure.in

cat > Makefile.am << 'END'
pkgdata_DATA =
libexec_SCRIPTS =
END

$ACLOCAL
$AUTOMAKE
$AUTOCONF

cwd=`pwd`
./configure --prefix="$cwd/inst"

$MAKE install
test -d inst/share/$me
test -d inst/libexec
rm -rf inst

$MAKE install-exec
test ! -d inst/share
test -d inst/libexec
rm -rf inst

$MAKE install-data
test -d inst/share/$me
test ! -d inst/libexec
rm -rf inst

./configure --prefix=/foo
$MAKE install DESTDIR=$cwd/dest
test -d dest/foo/share/$me
test -d dest/foo/libexec

: