maint: Update HACKING
[automake.git] / t / gettext-config-rpath.sh
blob939182d7ef5656a4d7d782eaa6d1fb2db33b9d6e
1 #! /bin/sh
2 # Copyright (C) 2002-2017 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 the config.rpath requirement.
19 required='gettext'
20 . test-init.sh
22 cat >> configure.ac << 'END'
23 AM_GNU_GETTEXT
24 # config.rpath is required by versions >= 0.14.3.
25 AM_GNU_GETTEXT_VERSION([0.14.3])
26 AC_OUTPUT
27 END
29 echo 'SUBDIRS = po intl' >Makefile.am
30 mkdir po intl
32 # If aclocal fails here, it may be that gettext is too old to provide
33 # AM_GNU_GETTEXT_VERSION. Similarly, autopoint will fail if it's
34 # from an older version. If gettext is too old to provide autopoint,
35 # this will fail as well, so we're safe here.
36 if ! $ACLOCAL && autopoint -n; then
37 skip_ "too old gettext installation"
40 AUTOMAKE_fails --add-missing
41 grep '^configure\.ac:.*required file.*config.rpath' stderr
42 : > config.rpath
43 $AUTOMAKE