http://bugs.winehq.com/show_bug.cgi?id=133
Summary: install of winedbg Product: Wine Version: unspecified Platform: All OS/Version: All Status: VERIFIED Severity: normal Priority: P1 Component: wine-debug AssignedTo: wine-bugs@winehq.com ReportedBy: nneul@umr.edu
The install attempts to symlink winedbg without unlinking it first. This causes a failure on any subsequent install:
Wine build complete. cd `dirname debugger/__install__` && gmake install gmake[1]: Entering directory `/products/wine/wine/debugger' [ -d /products/wine/linux/bin ] || mkdir -p /products/wine/linux/bin /usr/bin/install -c winedbg.so /products/wine/linux/bin/winedbg.so cd /products/wine/linux/bin && ln -s wine winedbg ln: winedbg: File exists gmake[1]: *** [install] Error 1 gmake[1]: Leaving directory `/products/wine/wine/debugger' gmake: *** [debugger/__install__] Error 2
You should make that make target ignore errors, or unlink it first.
I changed to this in Makefile:
install:: $(MODULE).so [ -d $(bindir) ] || $(MKDIR) $(bindir) $(INSTALL_PROGRAM) $(MODULE).so $(bindir)/$(MODULE).so cd $(bindir) && $(RM) $(MODULE) && $(LN_S) wine $(MODULE)
------- Additional Comments From nneul@umr.edu 2001-01-06 12:43 ------- Looks to have been corrected on 1.23 or 1.24 update of debugger/Makefile for .so build.
------- Additional Comments From tony_lambregts@telusplanet.net 2002-07-22 13:53 ------- This bug is Fixed. Verifying.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://bugs.winehq.com/show_bug.cgi?id=133. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.