Commit d6cab504 authored by Zygo Blaxell's avatar Zygo Blaxell Committed by Alexandre Julliard

Added a check for the existence of wine.sym before installing it.

parent 1921ef21
......@@ -191,11 +191,11 @@ uninstall_emu: uninstall_lib
install_lib: dummy
[ -d $(libdir) ] || $(MKDIR) $(libdir)
if [ $(LIB_TARGET) ]; then $(INSTALL_DATA) $(LIB_TARGET) $(libdir); fi
$(INSTALL_DATA) wine.sym $(libdir)/wine.sym
if [ -f wine.sym ]; then $(INSTALL_DATA) wine.sym $(libdir)/wine.sym; fi
uninstall_lib: dummy
cd $(libdir); $(RM) $(LIB_TARGET)
$(RM) $(libdir)/wine.sym
if [ -f $(libdir)/wine.sym ]; then $(RM) $(libdir)/wine.sym; fi
$(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