diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2011-04-15 19:21:26 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2011-04-15 19:21:26 +0200 |
commit | fb8570413625c417aef963f9ecf6af4bfbc846f7 (patch) | |
tree | aca105b68d900594754e2444dc2a551890dc89e4 | |
parent | 061cf14019af41062cfaca2ebd97f6a460de3bb2 (diff) | |
parent | 49c6deb45fb4f919428974822a98f06020992c32 (diff) | |
download | automake-fb8570413625c417aef963f9ecf6af4bfbc846f7.tar.gz |
Merge branch 'fix-python5b-test'
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | tests/python5b.test | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2011-04-14 Stefano Lattarini <stefano.lattarini@gmail.com> + tests: fix typo in python5b.test + * tests/python5b.test: Remove extra `:' from $PATH redefinition. + +2011-04-14 Stefano Lattarini <stefano.lattarini@gmail.com> + tests: remove redundant settings of `errexit' shell flag * tests/autodist-acconfig.test: Do not set the `errexit' shell flag, as it is already set by `tests/defs'. diff --git a/tests/python5b.test b/tests/python5b.test index c903e3d19..b0f76e698 100755 --- a/tests/python5b.test +++ b/tests/python5b.test @@ -32,7 +32,7 @@ cat > bin/my-python << 'END' exec python ${1+"$@"} END chmod a+x bin/my-python -PATH=`pwd`/bin:$PATH_SEPARATOR$PATH +PATH=`pwd`/bin$PATH_SEPARATOR$PATH : > Makefile.am |