diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-02-08 17:12:35 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-02-08 17:12:35 (GMT) |
commit | 45ab968ad8c015b8fca0f6a56d1bee8a06ee067e (patch) | |
tree | 78753e0e07c739661adec0d0197e64b32529d863 /Makefile.am | |
parent | 91f4f60a4a9711e17a6e72e3864e481e19e3337b (diff) | |
download | hdf5-45ab968ad8c015b8fca0f6a56d1bee8a06ee067e.zip hdf5-45ab968ad8c015b8fca0f6a56d1bee8a06ee067e.tar.gz hdf5-45ab968ad8c015b8fca0f6a56d1bee8a06ee067e.tar.bz2 |
[svn-r11926] Purpose:
bug fix
Description:
the build order of the several folders was causing linking errors
Solution:
changed the "." to be the last to avoid it
Platforms tested:
linux
Misc. update:
Diffstat (limited to 'Makefile.am')
-rwxr-xr-x | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index ae8b9d3..717fa9c 100755 --- a/Makefile.am +++ b/Makefile.am @@ -71,8 +71,8 @@ else HDF5_HL_DIR= endif -SUBDIRS = src test $(TESTPARALLEL_DIR) $(HDF5_HL_DIR) tools . $(CXX_DIR) \ - $(FORTRAN_DIR) +SUBDIRS = src test $(TESTPARALLEL_DIR) $(CXX_DIR) \ + $(FORTRAN_DIR) $(HDF5_HL_DIR) tools . DIST_SUBDIRS = src test testpar hl tools . c++ fortran perform examples |