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

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

automake 1.4-p6

File size: 314 bytes
Line 
1#! /bin/sh
2
3# Test to make sure _OBJECTS only generated once. Bug reported by
4# Joerg-Martin Schwarz.
5
6. $srcdir/defs || exit 1
7
8cat >> configure.in << 'END'
9AC_PROG_CC
10END
11
12cat > Makefile.am << 'END'
13bin_PROGRAMS = zardoz
14END
15
16$AUTOMAKE || exit 1
17
18count=`grep -c '^zardoz_OBJECTS' Makefile.in`
19test $count -eq 1
Note: See TracBrowser for help on using the repository browser.