diff options
Diffstat (limited to 'tests/vpath.test')
-rwxr-xr-x | tests/vpath.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/vpath.test b/tests/vpath.test index 1fbde6a6e..fd85de6bf 100755 --- a/tests/vpath.test +++ b/tests/vpath.test @@ -17,14 +17,14 @@ # Test to make sure VPATH can be overridden. # Report from Anthony Green. -. ./defs || exit 1 +. ./defs || Exit 1 cat > Makefile.am << 'END' VPATH = zardoz END -$ACLOCAL || exit 1 -$AUTOMAKE || exit 1 +$ACLOCAL || Exit 1 +$AUTOMAKE || Exit 1 -grep 'VPATH.*@srcdir@' Makefile.in && exit 1 -exit 0 +grep 'VPATH.*@srcdir@' Makefile.in && Exit 1 +Exit 0 |