diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-18 16:47:04 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-18 16:47:04 (GMT) |
commit | a2e49651af8f3a372933aba41db446b353f83884 (patch) | |
tree | 0a17314499a658b47e95bcd903b2313a0e46f23f /fortran | |
parent | 8f6dc0bc88a79a52e1e23b02e2a96b10ef5a5a44 (diff) | |
download | hdf5-a2e49651af8f3a372933aba41db446b353f83884.zip hdf5-a2e49651af8f3a372933aba41db446b353f83884.tar.gz hdf5-a2e49651af8f3a372933aba41db446b353f83884.tar.bz2 |
[svn-r2696] Purpose:
Bug Fix
Description:
On some platforms, if you don't have . in your PATH, it won't
find the test program it's supposed to run.
Solution:
Changed instead to ./$$test so that it picks up the program in
the current directory.
Platforms tested:
Opus and Linux
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/config/conclude.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fortran/config/conclude.in b/fortran/config/conclude.in index 3629ad8..6d8a181 100644 --- a/fortran/config/conclude.in +++ b/fortran/config/conclude.in @@ -26,8 +26,8 @@ check test _test: tests echo "============================"; \ echo "Testing $$test $(TEST_FLAGS)"; \ echo "============================"; \ - PATH=".:$$PATH" srcdir=$(srcdir) \ - $(RUNTEST) $$test $(TEST_FLAGS) || \ + srcdir="$(srcdir)" \ + $(RUNTEST) ./$$test $(TEST_FLAGS) || \ exit 1; \ echo ""; \ fi; \ @@ -38,7 +38,7 @@ check test _test: tests echo "Testing $$test $(TEST_FLAGS)"; \ echo "============================"; \ RUNSERIAL="$(RUNSERIAL)" RUNPARALLEL="$(RUNPARALLEL)" \ - srcdir=$(srcdir) \ + srcdir="$(srcdir)" \ /bin/sh $$test $(TEST_FLAGS) || \ exit 1; \ echo ""; \ |