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 | |
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:
-rwxr-xr-x | Makefile.am | 4 | ||||
-rw-r--r-- | Makefile.in | 4 |
2 files changed, 4 insertions, 4 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 diff --git a/Makefile.in b/Makefile.in index 45373df..168de63 100644 --- a/Makefile.in +++ b/Makefile.in @@ -359,8 +359,8 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog @BUILD_FORTRAN_CONDITIONAL_TRUE@FORTRAN_DIR = fortran @BUILD_HDF5_HL_CONDITIONAL_FALSE@HDF5_HL_DIR = @BUILD_HDF5_HL_CONDITIONAL_TRUE@HDF5_HL_DIR = hl -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 |