tests: expose automake bug#14560
[platform/upstream/automake.git] / t / txinfo-absolute-srcdir-pr408.sh
1 #! /bin/sh
2 # Copyright (C) 2003-2013 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 2, 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 # Make sure Texinfo installation works when absolute --srcdir is used.
18 # PR/408
19
20 required='makeinfo'
21 . test-init.sh
22
23 echo AC_OUTPUT >> configure.ac
24
25 cat > Makefile.am << 'END'
26 info_TEXINFOS = main.texi
27 END
28
29
30 cat > main.texi << 'END'
31 \input texinfo
32 @setfilename main.info
33 @settitle main
34 @node Top
35 Hello walls.
36 @include version.texi
37 @bye
38 END
39
40
41 $ACLOCAL
42 $AUTOMAKE --add-missing
43 $AUTOCONF
44
45 ./configure
46 $MAKE
47 $MAKE distclean
48
49 abscwd=$(pwd) || fatal_ "getting current working directory"
50
51 mkdir build
52 cd build
53 ../configure --srcdir="$abscwd" \
54              --prefix="$abscwd/build/_inst" \
55              --infodir="$abscwd/build/_inst/info"
56
57 $MAKE install
58
59 test -f ../main.info
60 test ! -e ./main.info
61 test -f _inst/info/main.info
62
63 $MAKE uninstall
64 test ! -e _inst/info/main.info
65 test -f ../main.info
66
67 # Multiple uninstall should not fail.
68 $MAKE uninstall
69
70 :