Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / txinfo26.test
blob87b4ba6950a0d663243a6eb73fdf8607060e8996
1 #! /bin/sh
2 # Copyright (C) 2003, 2007, 2008 Free Software Foundation, Inc.
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 3, or (at your option)
7 # any later version.
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.
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/>.
17 # Make sure Texinfo installation works when absolute --srcdir is used.
18 # PR/408
20 required='makeinfo'
21 . ./defs || Exit 1
23 set -e
25 echo AC_OUTPUT >> configure.in
27 cat > Makefile.am << 'END'
28 info_TEXINFOS = main.texi
29 END
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
43 $ACLOCAL
44 $AUTOMAKE --add-missing
45 $AUTOCONF
47 ./configure
48 $MAKE
49 $MAKE distclean
51 # We do not require this to work with a directory that contains white space.
52 case `pwd` in
53 *\ * | *\ *) Exit 77;;
54 esac
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
64 $MAKE uninstall
65 test ! -f _inst/info/main.info
66 test -f ../main.info
68 # multiple uninstall should not fail.
69 $MAKE uninstall