Hash : 98eb9e29 Author : Date : 1996-10-04T02:58:19
Allow all variables to be overridden
Download
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#! /bin/sh # Test to make sure VPATH can be overridden. # Report from Anthony Green. . $srcdir/defs || exit 1 cat > Makefile.am << 'END' VPATH = zardoz END $AUTOMAKE || exit 1 grep 'VPATH.*@srcdir@' Makefile.in && exit 1 exit 0