* automake.in ($seen_gettext_intl): New variable.
[automake/plouj.git] / tests / gettext3.test
blobe1d79ffa6f1a72aad00acaf28b23520b70162889
1 #! /bin/sh
2 # Copyright (C) 2006 Free Software Foundation, Inc.
4 # This file is part of GNU Automake.
6 # GNU Automake is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # GNU Automake is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Automake; see the file COPYING. If not, write to
18 # the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 # Boston, MA 02110-1301, USA.
21 # Check gettext `AM_GNU_GETTEXT_INTL_SUBDIR' support.
23 required='gettext'
24 . ./defs || exit 1
26 set -e
28 cat >>configure.in <<END
29 AM_GNU_GETTEXT([external])
30 AM_GNU_GETTEXT_INTL_SUBDIR
31 AC_OUTPUT
32 END
34 echo 'SUBDIRS = po' >Makefile.am
35 mkdir po
37 # if aclocal fails, assume the gettext macros are too old and do not
38 # define AM_GNU_GETTEXT_INTL_SUBDIR.
39 $ACLOCAL || exit 77
41 # config.rpath is required.
42 : >config.rpath
44 # intl/ is required.
45 AUTOMAKE_fails --add-missing
46 grep 'AM_GNU_GETTEXT.*intl.*SUBDIRS' stderr
48 mkdir intl
49 AUTOMAKE_fails --add-missing
50 grep 'AM_GNU_GETTEXT.*intl.*SUBDIRS' stderr
52 echo 'SUBDIRS = po intl' > Makefile.am
53 $AUTOMAKE --add-missing