diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-02-09 21:06:14 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-02-09 21:06:14 (GMT) |
commit | f6dd21fb11c6a5fa8503b0614715cdfdf738d380 (patch) | |
tree | 4ba95688ee5af3398b45b5d851040451ea01910f /Makefile.am | |
parent | 45ab968ad8c015b8fca0f6a56d1bee8a06ee067e (diff) | |
download | hdf5-f6dd21fb11c6a5fa8503b0614715cdfdf738d380.zip hdf5-f6dd21fb11c6a5fa8503b0614715cdfdf738d380.tar.gz hdf5-f6dd21fb11c6a5fa8503b0614715cdfdf738d380.tar.bz2 |
[svn-r11931] Purpose:
bug fix
Description:
the linking order in Makefile.am of the gif2h5 tool was causing linking errors on some configurations (pgcc, --disable-shared)
Solution:
changed the order of the linking (hl before hdf5)
Platforms tested:
linux, several configurations
solaris
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 717fa9c..7767ce7 100755 --- a/Makefile.am +++ b/Makefile.am @@ -71,8 +71,8 @@ else HDF5_HL_DIR= endif -SUBDIRS = src test $(TESTPARALLEL_DIR) $(CXX_DIR) \ - $(FORTRAN_DIR) $(HDF5_HL_DIR) tools . +SUBDIRS = src test $(TESTPARALLEL_DIR) $(CXX_DIR) $(FORTRAN_DIR) \ + $(HDF5_HL_DIR) tools . DIST_SUBDIRS = src test testpar hl tools . c++ fortran perform examples |