Clarify overriding of `*_DEPENDENCIES' in LIBOBJS node.
[automake/ericb.git] / tests / gettext2.test
blobdfb7b479653b74e9a586aebe53b2c7a8a651f452
1 #! /bin/sh
2 # Copyright (C) 2002, 2003, 2006 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 # Check gettext `external' support.
18 # PR/338, reported by Charles Wilson.
20 required='gettext'
21 . ./defs || Exit 1
23 set -e
25 cat >>configure.in <<END
26 AM_GNU_GETTEXT([external])
27 AC_OUTPUT
28 END
30 : >Makefile.am
31 mkdir foo po
33 $ACLOCAL
35 # config.rpath is required.
36 : >config.rpath
38 # po/ is required, but intl/ isn't.
40 AUTOMAKE_fails --add-missing
41 grep 'AM_GNU_GETTEXT.*SUBDIRS' stderr
43 echo 'SUBDIRS = foo' >Makefile.am
44 AUTOMAKE_fails --add-missing
45 grep 'AM_GNU_GETTEXT.*po' stderr
47 # Ok.
49 echo 'SUBDIRS = po' >Makefile.am
50 $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
57 # intl/ isn't wanted with AM_GNU_GETTEXT([external]).
59 mkdir intl
60 echo 'SUBDIRS = po intl' >Makefile.am
61 AUTOMAKE_fails --add-missing
62 grep 'intl.*AM_GNU_GETTEXT' stderr