2 # Copyright (C) 2010-2012 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)
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 that the first among --help and --version to be specified on
18 # the command line takes precedence over the following one.
22 # Ensure we run in an empty directory.
26 # Honour user overrides for $ACLOCAL and $AUTOMAKE, but without
27 # adding extra options.
28 ACLOCAL
=$am_original_ACLOCAL
29 AUTOMAKE
=$am_original_AUTOMAKE
31 escape_dots
() { sed 's/\./\\./g'; } # Avoid issues with "\" in backquotes.
32 apiversion_rx
=$
(echo "$APIVERSION" | escape_dots
)
34 $ACLOCAL --version --help >stdout ||
{ cat stdout
; exit 1; }
36 grep "^aclocal.*$apiversion_rx" stdout
37 grep "^Usage" stdout
&& exit 1
39 $ACLOCAL --help --version >stdout ||
{ cat stdout
; exit 1; }
42 grep "^aclocal.*$apiversion_rx" stdout
&& exit 1
44 $AUTOMAKE --version --help >stdout ||
{ cat stdout
; exit 1; }
46 grep "^automake.*$apiversion_rx" stdout
47 grep "^Usage" stdout
&& exit 1
49 $AUTOMAKE --help --version >stdout ||
{ cat stdout
; exit 1; }
52 grep "^automake.*$apiversion_rx" stdout
&& exit 1