doc: typos in test file.
[automake.git] / t / nodef.sh
blob44fb24ce74ef9a672ed51101058495a16969d0c5
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 # Make sure that PACKAGE and VERSION are AC_DEFINEd when requested.
19 . test-init.sh
21 # -------------------------------------------------------------------
22 # Do not upgrade this file to use the modern AC_INIT/AM_INIT_AUTOMAKE
23 # forms. The day these obsolete AC_INIT and AM_INIT_AUTOMAKE forms
24 # are dropped, just erase the file.
25 # nodef2.test contains the modern version of this test.
26 # -------------------------------------------------------------------
28 # First, check that PACKAGE and VERSION are output by default.
30 cat > configure.ac << 'END'
31 AC_INIT
32 AM_INIT_AUTOMAKE([UnIqUe_PaCkAgE], [UnIqUe_VeRsIoN])
33 AC_OUTPUT(output)
34 END
36 echo 'DEFS = @DEFS@' > output.in
38 $ACLOCAL
39 $AUTOCONF
40 ./configure
42 grep 'DEFS.*-DVERSION=\\"UnIqUe' output
44 # Then, check that PACKAGE and VERSION are not output if requested.
46 cat > configure.ac << 'END'
47 AC_INIT
48 AM_INIT_AUTOMAKE([UnIqUe_PaCkAgE], [UnIqUe_VeRsIoN], [no])
49 AC_OUTPUT(output)
50 END
52 $ACLOCAL
53 $AUTOCONF
54 ./configure
56 grep 'DEFS.*-DVERSION=\\"UnIqUe' output && exit 1