diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-08 18:28:02 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-12-08 18:28:02 (GMT) |
commit | dc08de60a62bfeecd3f35553f8bfc353053b0986 (patch) | |
tree | 8b957fe64dbc09c568b5b4306c8d0698ba8b3dd9 /c++/examples/Makefile.in | |
parent | 2c96b3ac314c22dd6e0aa045e2c0d6047474e85f (diff) | |
download | hdf5-dc08de60a62bfeecd3f35553f8bfc353053b0986.zip hdf5-dc08de60a62bfeecd3f35553f8bfc353053b0986.tar.gz hdf5-dc08de60a62bfeecd3f35553f8bfc353053b0986.tar.bz2 |
[svn-r3100] Purpose:
Fix
Description:
When not building in the same directory, we needed to tell the
checker wherre to look for files.
Solution:
Put $(srcdir) before things which needed it.
Platforms tested:
Linux
Diffstat (limited to 'c++/examples/Makefile.in')
-rw-r--r-- | c++/examples/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index 2a928b6..2ba0672 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -29,7 +29,7 @@ TEST_OBJ=$(TEST_SRC:.cpp=.lo) ## `make check' will run. List them in the order they should be run. PROGS=$(TEST_SRC:.cpp=) -TEST_SCRIPTS=testexamples.sh +TEST_SCRIPTS=$(srcdir)/testexamples.sh ## These are the files that `make clean' (and derivatives) will remove from ## this directory. |