doc: typos in test file.
[automake.git] / t / gettext-external-pr338.sh
blob47472f2aaa89cef714063bc1a397ddee03b46626
1 #! /bin/sh
2 # Copyright (C) 2002-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 # Check gettext 'external' support.
18 # PR/338, reported by Charles Wilson.
20 required='gettext'
21 . test-init.sh
23 cat >>configure.ac <<END
24 AM_GNU_GETTEXT([external])
25 AC_OUTPUT
26 END
28 : >Makefile.am
29 mkdir foo po
31 $ACLOCAL
32 $AUTOCONF
34 # config.rpath is required.
35 : >config.rpath
37 # po/ is required, but intl/ isn't.
39 AUTOMAKE_fails --add-missing
40 grep 'AM_GNU_GETTEXT.*SUBDIRS' stderr
42 echo 'SUBDIRS = foo' >Makefile.am
43 AUTOMAKE_fails --add-missing
44 grep 'AM_GNU_GETTEXT.*po' stderr
46 # Ok.
48 echo 'SUBDIRS = po' >Makefile.am
49 $AUTOMAKE --add-missing
52 # Don't try running ./configure --with-included-gettext if the
53 # user is using AM_GNU_GETTEXT([external]).
54 grep 'with-included-gettext' Makefile.in && exit 1
55 ./configure
56 $MAKE -n distcheck | grep 'with-included-gettext' && exit 1
58 # intl/ isn't wanted with AM_GNU_GETTEXT([external]).
60 mkdir intl
61 echo 'SUBDIRS = po intl' >Makefile.am
62 AUTOMAKE_fails --add-missing
63 grep 'intl.*AM_GNU_GETTEXT' stderr