Fix for PR automake/14:
[automake.git] / tests / vpath.test
blob03bbc09299a0b9a7381b7cd044fa3c7b93b029b4
1 #! /bin/sh
3 # Test to make sure VPATH can be overridden.
4 # Report from Anthony Green.
6 . $srcdir/defs || exit 1
8 cat > Makefile.am << 'END'
9 VPATH = zardoz
10 END
12 $AUTOMAKE || exit 1
14 grep 'VPATH.*@srcdir@' Makefile.in && exit 1
15 exit 0