Static libraries become out of date on Darwin once they are copied or moved

git-svn-id: http://svn.fedorahosted.org/svn/corosync/trunk@1440 fd59a12c-fef9-0310-b244-a6a79926bd2f
This commit is contained in:
Steven Dake 2007-09-09 06:51:39 +00:00
parent aedf0ed6ad
commit f7bd11657b

View File

@ -105,6 +105,9 @@ install: all
install -m 755 lib/lib$$aLib.so.2.* $(DESTDIR)$(LIBDIR); \
if [ "xNO" = "x$(STATICLIBS)" ]; then \
install -m 755 lib/lib$$aLib.a $(DESTDIR)$(LIBDIR); \
if [ ${OPENAIS_COMPAT} = "DARWIN" ]; then \
ranlib $(DESTDIR)$(LIBDIR)/lib$$aLib.a; \
fi \
fi \
done