cc88a6e57b2b5f49701e75a01e21edfce35b3e8c
[platform/upstream/automake.git] / t / txinfo26.sh
1 #! /bin/sh
2 # Copyright (C) 2003-2012 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 . ./defs || exit 1
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 case $abscwd in
52   *\ * | *\     *)
53     skip_ "this test might fail in a directory containing white spaces";;
54 esac
55
56 mkdir build
57 cd build
58 ../configure --srcdir="$abscwd" \
59              --prefix="$abscwd/build/_inst" \
60              --infodir="$abscwd/build/_inst/info"
61
62 $MAKE install
63
64 test -f ../main.info
65 test ! -f ./main.info
66 test -f _inst/info/main.info
67
68 $MAKE uninstall
69 test ! -f _inst/info/main.info
70 test -f ../main.info
71
72 # Multiple uninstall should not fail.
73 $MAKE uninstall