projects
/
platform
/
upstream
/
automake.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
6362b38706e4973e5c88e4f27018088dcb847c57
[platform/upstream/automake.git]
/
tests
/
instdata.test
1
#! /bin/sh
2
3
# Test to see if defining INSTALL_DATA causes problems. From EGCS
4
# list.
5
6
. $srcdir/defs || exit 1
7
8
echo 'AC_SUBST(INSTALL_DATA)' >> configure.in
9
10
: > Makefile.am
11
12
$ACLOCAL || exit 1
13
$AUTOMAKE || exit 1
14
15
(grep '^DATA =' Makefile.in | grep INSTALL_DATA) && exit 1
16
exit 0