source: trunk/essentials/sys-devel/automake-1.4/tests/confincl.test@ 3285

Last change on this file since 3285 was 3124, checked in by bird, 19 years ago

automake 1.4-p6

File size: 364 bytes
Line 
1#! /bin/sh
2
3# This tests for a bug reported by Gord Matzigkeit.
4# If config.h is not used, @CONFIG_INCLUDE_SPEC@ should not appear
5# in Makefile.in.
6
7. $srcdir/defs || exit 1
8
9cat >> configure.in << 'END'
10AC_PROG_CC
11END
12
13cat > Makefile.am << 'EOF'
14bin_PROGRAMS = fred
15EOF
16
17$AUTOMAKE || exit 1
18
19if grep '@CONFIG_INCLUDE_SPEC@' Makefile.in; then
20 exit 1
21fi
22exit 0
Note: See TracBrowser for help on using the repository browser.