For Debian Bug #185388:
[automake.git] / tests / insthook.test
blob0883b29a72b91ece15f184857bb19b702c89b3ae
1 #! /bin/sh
2 # Copyright (C) 2003 Free Software Foundation, Inc.
4 # This file is part of GNU Automake.
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.
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.
16 # You should have received a copy of the GNU General Public License
17 # along with autoconf; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 # Boston, MA 02111-1307, USA.
21 # Make sure the install-exec-hook example we give in the manual works.
23 . ./defs || exit 1
25 set -e
27 cat >>configure.in <<'EOF'
28 AC_PROG_LN_S
29 AC_OUTPUT
30 EOF
32 cat >Makefile.am <<'END'
33 dist_bin_SCRIPTS = foo
35 install-exec-hook:
36 cd $(DESTDIR)$(bindir) && \
37 mv -f foo foo-$(VERSION) && \
38 $(LN_S) foo-$(VERSION) foo
40 installcheck-local:
41 test -f $(bindir)/foo
42 test -f $(bindir)/foo-$(VERSION)
43 : > $(top_srcdir)/../ok
44 END
46 echo 1 > foo
48 $ACLOCAL
49 $AUTOCONF
50 $AUTOMAKE
52 ./configure
53 $MAKE distcheck
54 # Sanity check to make sure installcheck-local was run.
55 test -f ok
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