Commit b199b195 authored by James Juran's avatar James Juran Committed by Alexandre Julliard

Run ldconfig in make install if using --enable-dll.

Cleaned up uninstall_lib as well.
parent ed1d88b6
......@@ -200,10 +200,10 @@ install_lib: dummy
[ -d $(libdir) ] || $(MKDIR) $(libdir)
if [ $(LIB_TARGET) ]; then $(INSTALL_DATA) $(LIB_TARGET) $(libdir); fi
if [ -f wine.sym ]; then $(INSTALL_DATA) wine.sym $(libdir)/wine.sym; fi
if [ $(LIB_TARGET) = libwine.so.1.0 ]; then ldconfig; fi
uninstall_lib: dummy
cd $(libdir); $(RM) $(LIB_TARGET)
if [ -f $(libdir)/wine.sym ]; then $(RM) $(libdir)/wine.sym; fi
cd $(libdir); $(RM) $(LIB_TARGET) libwine.a libwine.so wine.sym
$(BUILDSUBDIRS): dummy
@cd $@; $(SUBMAKE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment