source: trunk/essentials/sys-devel/automake-1.9/tests/insthook.test

Last change on this file was 3086, checked in by bird, 18 years ago

automake 1.9.6

File size: 1.8 KB
Line 
1#! /bin/sh
2# Copyright (C) 2003 Free Software Foundation, Inc.
3#
4# This file is part of GNU Automake.
5#
6# GNU Automake is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2, or (at your option)
9# any later version.
10#
11# GNU Automake is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with Automake; see the file COPYING. If not, write to
18# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19# Boston, MA 02110-1301, USA.
20
21# Make sure the install-exec-hook example we give in the manual works.
22
23. ./defs || exit 1
24
25set -e
26
27cat >>configure.in <<'EOF'
28AC_PROG_LN_S
29AC_OUTPUT
30EOF
31
32cat >Makefile.am <<'END'
33dist_bin_SCRIPTS = foo
34
35install-exec-hook:
36 cd $(DESTDIR)$(bindir) && \
37 mv -f foo foo-$(VERSION) && \
38 $(LN_S) foo-$(VERSION) foo
39
40installcheck-local:
41 test -f $(bindir)/foo
42 test -f $(bindir)/foo-$(VERSION)
43 : > $(top_srcdir)/../ok
44END
45
46echo 1 > foo
47
48$ACLOCAL
49$AUTOCONF
50$AUTOMAKE
51
52./configure
53$MAKE distcheck
54# Sanity check to make sure installcheck-local was run.
55test -f ok
56
57# Make sure that installing a second version doesn't erase the first
58# one. (This is error prone since `foo' symlinks to `foo-1.0' and the
59# second version will overwrite `foo'. Hopefully `install' and `install-sh'
60# are smart enough to erase the `foo' symlink before installing the new
61# version.)
62./configure --bindir=`pwd`/bin
63$MAKE install
64echo 2 > foo
65VERSION=2.0 $MAKE -e install
66grep 1 bin/foo-1.0
67grep 2 bin/foo-2.0
68grep 2 bin/foo
Note: See TracBrowser for help on using the repository browser.