diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2010-04-11 19:53:35 +0200 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2010-04-11 19:53:49 +0200 |
commit | 41431556eb2580d22181a43006146958f765bc2b (patch) | |
tree | 55c9b05f33328ebf06d8ad373da89895ac5766e6 /tests/confh5.test | |
parent | 7103a6060500d07a8de598918fa51c557f0367dd (diff) | |
download | automake-41431556eb2580d22181a43006146958f765bc2b.tar.gz |
Bugfix in confh5.test w.r.t. Solaris/Heirloom Sh.
* tests/confh5.test: In the generated Makefile.am: do not use
`test ! -e FILE' to check for the non-existence of a file, since
that is not supported by Solarish/Heirloom Sh.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Diffstat (limited to 'tests/confh5.test')
-rwxr-xr-x | tests/confh5.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/confh5.test b/tests/confh5.test index 15593c856..52a3054e2 100755 --- a/tests/confh5.test +++ b/tests/confh5.test @@ -30,7 +30,9 @@ cat > Makefile.am << 'END' test: distdir test -f $(distdir)/config.h.in test -f $(distdir)/include/config.h.in.in - test ! -e $(distdir)/include/config.h.in + : # Solarish Sh do not support 'test -e' + test ! -f $(distdir)/include/config.h.in + test ! -r $(distdir)/include/config.h.in END mkdir include |