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 |
|
---|
25 | set -e
|
---|
26 |
|
---|
27 | cat >>configure.in <<'EOF'
|
---|
28 | AC_PROG_LN_S
|
---|
29 | AC_OUTPUT
|
---|
30 | EOF
|
---|
31 |
|
---|
32 | cat >Makefile.am <<'END'
|
---|
33 | dist_bin_SCRIPTS = foo
|
---|
34 |
|
---|
35 | install-exec-hook:
|
---|
36 | cd $(DESTDIR)$(bindir) && \
|
---|
37 | mv -f foo foo-$(VERSION) && \
|
---|
38 | $(LN_S) foo-$(VERSION) foo
|
---|
39 |
|
---|
40 | installcheck-local:
|
---|
41 | test -f $(bindir)/foo
|
---|
42 | test -f $(bindir)/foo-$(VERSION)
|
---|
43 | : > $(top_srcdir)/../ok
|
---|
44 | END
|
---|
45 |
|
---|
46 | echo 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.
|
---|
55 | test -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
|
---|
64 | echo 2 > foo
|
---|
65 | VERSION=2.0 $MAKE -e install
|
---|
66 | grep 1 bin/foo-1.0
|
---|
67 | grep 2 bin/foo-2.0
|
---|
68 | grep 2 bin/foo
|
---|