diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-27 21:54:54 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-10-27 21:54:54 (GMT) |
commit | 78365de55f2cf1859bcfbb4cfba486d3c9478760 (patch) | |
tree | e13ea82acb3d0407806651b0984daceb0f35ee07 /fortran/config/conclude.in | |
parent | 592f0fc876ad6365f6149d28b89891e283e45d88 (diff) | |
download | hdf5-78365de55f2cf1859bcfbb4cfba486d3c9478760.zip hdf5-78365de55f2cf1859bcfbb4cfba486d3c9478760.tar.gz hdf5-78365de55f2cf1859bcfbb4cfba486d3c9478760.tar.bz2 |
[svn-r2745] Purpose:
Bug fix...I hope
Description:
For some reason, libtool wasn't generating a .lai library file in
the .libs directory. It needs this to install things, apparently.
Solution:
Major hack! I force a ln to the "real" one libtools wants.
Platforms tested:
Modi4
Diffstat (limited to 'fortran/config/conclude.in')
-rw-r--r-- | fortran/config/conclude.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fortran/config/conclude.in b/fortran/config/conclude.in index 6d8a181..2c1fa34 100644 --- a/fortran/config/conclude.in +++ b/fortran/config/conclude.in @@ -62,6 +62,7 @@ $(DOCDIR): install: $(PUB_LIB) $(PUB_HDR) $(PUB_PROGS) $(libdir) $(includedir) $(bindir) @for f in X $(PUB_LIB); do \ if test $$f != X; then \ + (cd .libs && rm -f $(PUB_LIB)i && ln -s ../$(PUB_LIB) $(PUB_LIB)i); \ ($(LT_INSTALL_LIB) $$f $(libdir)/. || exit 1); \ fi; \ done |