** install_libs:
authorFlorian Liekweg <liekweg@ipd.info.uni-karlsruhe.de>
Mon, 18 Oct 2004 08:59:53 +0000 (08:59 +0000)
committerFlorian Liekweg <liekweg@ipd.info.uni-karlsruhe.de>
Mon, 18 Oct 2004 08:59:53 +0000 (08:59 +0000)
** the '.a' are ranlib'ed already, and the '.so' doesn't need ranlib-ing

[r4133]

MakeTargets

index e994405..e4a8cc2 100644 (file)
@@ -87,7 +87,8 @@ install_libs:         subdir_install_libs local_install_libs
 local_install_libs:
 ifneq ($(strip $(INSTALL_LIBS)),)
        $(INSTALL)  -m u+rw,a+r $(addprefix $(topdir)/,$(INSTALL_LIBS)) $(LIBDIR)
-       $(RANLIB) $(addprefix $(LIBDIR)/,$(INSTALL_LIBS))
+       # the '.a' are ranlib'ed already, and the '.so' doesn't need ranlib-ing
+       # $(RANLIB) $(addprefix $(LIBDIR)/,$(INSTALL_LIBS))
 endif