diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 1999-06-18 20:17:12 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 1999-06-18 20:17:12 (GMT) |
commit | 998991d13d8db9219c3f115c9565b0e3ea994690 (patch) | |
tree | 40eecbbb5876c3fc82e9a346866c20b5469bbaf0 /examples/Makefile.in | |
parent | 15c540028457be0bd19476326e0f7139835cfea5 (diff) | |
download | hdf5-998991d13d8db9219c3f115c9565b0e3ea994690.zip hdf5-998991d13d8db9219c3f115c9565b0e3ea994690.tar.gz hdf5-998991d13d8db9219c3f115c9565b0e3ea994690.tar.bz2 |
[svn-r1365]
Examples were listed in the wrong order on the TEST_PROGS line.
make check was failing.
Fixed.
Tested on Solaris 2.7 ( baldric )
Diffstat (limited to 'examples/Makefile.in')
-rw-r--r-- | examples/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/Makefile.in b/examples/Makefile.in index e3842bb..ababc4f 100644 --- a/examples/Makefile.in +++ b/examples/Makefile.in @@ -16,8 +16,8 @@ LIBHDF5=../src/libhdf5.la # These are the programs that `make all' or `make tests' will build and which # `make check' will run. List them in the order they should be run. -TEST_PROGS=h5_chunk_read h5_compound h5_extend_write h5_group h5_write \ - h5_read h5_select h5_attribute +TEST_PROGS= h5_write h5_read h5_extend_write h5_chunk_read h5_compound \ + h5_group h5_select h5_attribute # These are the files that `make clean' (and derivatives) will remove from # this directory. |