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

oldstable
Zygo Blaxell 1999-02-20 16:07:49 +00:00 committed by Alexandre Julliard
parent 1921ef213a
commit d6cab5049d
1 changed files with 2 additions and 2 deletions

View File

@ -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)