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