blob: f5e4e791605b04471e5b201411264cc625633619 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! /bin/sh
# Test to make sure misspellings in _SOURCES variables cause failure.
. $srcdir/defs || exit 1
echo AC_PROG_CC >> configure.in
cat > Makefile.am << 'END'
bin_PROGRAMS = zardoz
zardoz_SOURCES = x.c
qardoz_LDADD = -ljoe
END
$AUTOMAKE && exit 1
exit 0
|