doc: typos in test file.
[automake.git] / t / txinfo-absolute-srcdir-pr408.sh
blob4e0ad3add7723448935ab523cf2af10a308e0a9e
1 #! /bin/sh
2 # Copyright (C) 2003-2024 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 2, 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 <https://www.gnu.org/licenses/>.
17 # Make sure Texinfo installation works when absolute --srcdir is used.
18 # PR/408
20 required='makeinfo'
21 . test-init.sh
23 echo AC_OUTPUT >> configure.ac
25 cat > Makefile.am << 'END'
26 info_TEXINFOS = main.texi
27 END
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
41 $ACLOCAL
42 $AUTOMAKE --add-missing
43 $AUTOCONF
45 ./configure
46 $MAKE
47 $MAKE distclean
49 abscwd=$(pwd) || fatal_ "getting current working directory"
51 mkdir build
52 cd build
53 ../configure --srcdir="$abscwd" \
54 --prefix="$abscwd/build/_inst" \
55 --infodir="$abscwd/build/_inst/info"
57 $MAKE install
59 test -f ../main.info
60 test ! -e ./main.info
61 test -f _inst/info/main.info
63 $MAKE uninstall
64 test ! -e _inst/info/main.info
65 test -f ../main.info
67 # Multiple uninstall should not fail.
68 $MAKE uninstall