Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / txinfo26.test
1 #! /bin/sh
2 # Copyright (C) 2003, 2007, 2008  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 set -e
24
25 echo AC_OUTPUT >> configure.in
26
27 cat > Makefile.am << 'END'
28 info_TEXINFOS = main.texi
29 END
30
31
32 cat > main.texi << 'END'
33 \input texinfo
34 @setfilename main.info
35 @settitle main
36 @node Top
37 Hello walls.
38 @include version.texi
39 @bye
40 END
41
42
43 $ACLOCAL
44 $AUTOMAKE --add-missing
45 $AUTOCONF
46
47 ./configure
48 $MAKE
49 $MAKE distclean
50
51 # We do not require this to work with a directory that contains white space.
52 case `pwd` in
53   *\ * | *\     *) Exit 77;;
54 esac
55
56 mkdir build
57 cd build
58 ../configure "--srcdir=`pwd`/.." "--prefix=`pwd`/_inst" "--infodir=`pwd`/_inst/info"
59 $MAKE install
60 test -f ../main.info
61 test ! -f ./main.info
62 test -f _inst/info/main.info
63
64 $MAKE uninstall
65 test ! -f _inst/info/main.info
66 test -f ../main.info
67
68 # multiple uninstall should not fail.
69 $MAKE uninstall