source: trunk/essentials/sys-devel/automake-1.4/tests/recurs.test

Last change on this file was 3124, checked in by bird, 18 years ago

automake 1.4-p6

File size: 352 bytes
Line 
1#! /bin/sh
2
3# Test to make sure recursive variable definitions die.
4
5. $srcdir/defs || exit 1
6
7cat > configure.in << 'END'
8AM_INIT_AUTOMAKE(nonesuch, nonesuch)
9AC_PROG_CC
10AM_CONDITIONAL(ONE, true)
11AM_CONDITIONAL(TWO, false)
12AC_OUTPUT(Makefile)
13END
14
15cat > Makefile.am << 'END'
16bin_PROGRAMS = $(foo)
17foo = $(bin_PROGRAMS)
18END
19
20$AUTOMAKE && exit 1
21exit 0
Note: See TracBrowser for help on using the repository browser.