Skip to content
Snippets Groups Projects
Commit 16e278c3 authored by James Juran's avatar James Juran Committed by Alexandre Julliard
Browse files

Only test $(LIB_TARGET) = libwine.so.1.0 if $(LIB_TARGET) is

non-blank.
parent 46c4d398
No related branches found
No related tags found
No related merge requests found
......@@ -200,9 +200,11 @@ uninstall_emu: uninstall_lib
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
if [ $(LIB_TARGET) ]; then \
$(INSTALL_DATA) $(LIB_TARGET) $(libdir); \
if [ $(LIB_TARGET) = libwine.so.1.0 ]; then $(LDCONFIG); fi \
fi
uninstall_lib: dummy
cd $(libdir); $(RM) $(LIB_TARGET) libwine.a libwine.so wine.sym
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment