diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2001-02-20 23:13:11 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2001-02-20 23:13:11 (GMT) |
commit | 53ed6e6794bb72c3521d0f2804844b46e266514b (patch) | |
tree | d7ed1b9575f8d0581e88bc0c1dd2d114deeb73e9 /tools | |
parent | 52c7057cc8381f18b127692e6e2be9f7e91f1a6e (diff) | |
download | hdf5-53ed6e6794bb72c3521d0f2804844b46e266514b.zip hdf5-53ed6e6794bb72c3521d0f2804844b46e266514b.tar.gz hdf5-53ed6e6794bb72c3521d0f2804844b46e266514b.tar.bz2 |
[svn-r3475] Purpose:
Bug fix
Description:
h4toh5test was being installed because it was put in the PUB_PROGS
which is specifically for public programs to be installed.
Solution:
Moved it away from the PUB_PROGS list to the PROGS list.
Platforms tested:
eirene.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile.in b/tools/Makefile.in index 5cc88e6..a813d0a 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -23,8 +23,8 @@ TEST_SCRIPTS=$(srcdir)/testh5dump.sh $(srcdir)/testh5ls.sh @TESTH5TOH4@ @TESTH4T LT_LINK_LIB=$(LT) --mode=link $(CC) -static -rpath $(libdir) LIB=libh5tools.la LIBHDF5=../src/libhdf5.la -PUB_PROGS=h5debug h5import h5ls h5repart h5dump @H5TOH4@ @H4TOH5@ @H4TOH5TEST@ @PDB2HDF@ -PROGS=$(PUB_PROGS) $(TEST_PROGS) h5dumptst +PUB_PROGS=h5debug h5import h5ls h5repart h5dump @H5TOH4@ @H4TOH5@ @PDB2HDF@ +PROGS=$(PUB_PROGS) $(TEST_PROGS) h5dumptst @H4TOH5TEST@ ## Source and object files for the library; do not install LIB_SRC=h5tools.c |