Module: wine Branch: stable Commit: 7f61c5827acb850ae998bdee75ab2edccdb7a619 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7f61c5827acb850ae998bdee75...
Author: Austin English austinenglish@gmail.com Date: Thu Nov 25 11:00:47 2010 -0800
winegcc: Symlink winegcc manpage to winecpp. (cherry picked from commit 50e2f2f10c1c7bc15455fb1315db1d96238f5650)
---
tools/winegcc/Makefile.in | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/tools/winegcc/Makefile.in b/tools/winegcc/Makefile.in index 986d17b..8b9250e 100644 --- a/tools/winegcc/Makefile.in +++ b/tools/winegcc/Makefile.in @@ -45,7 +45,9 @@ install install-dev:: $(PROGRAMS) $(MANPAGES) $(INSTALLDIRS) cd $(DESTDIR)$(bindir) && $(RM) winecpp$(EXEEXT) && $(LN_S) winegcc$(EXEEXT) winecpp$(EXEEXT) $(INSTALL_DATA) winegcc.man $(DESTDIR)$(mandir)/man$(prog_manext)/winegcc.$(prog_manext) cd $(DESTDIR)$(mandir)/man$(prog_manext) && $(RM) wineg++.$(prog_manext) && $(LN_S) winegcc.$(prog_manext) wineg++.$(prog_manext) + cd $(DESTDIR)$(mandir)/man$(prog_manext) && $(RM) winecpp.$(prog_manext) && $(LN_S) winegcc.$(prog_manext) winecpp.$(prog_manext)
uninstall:: $(RM) $(DESTDIR)$(bindir)/winegcc$(EXEEXT) $(DESTDIR)$(bindir)/wineg++$(EXEEXT) $(DESTDIR)$(bindir)/winecpp$(EXEEXT) \ - $(DESTDIR)$(mandir)/man$(prog_manext)/winegcc.$(prog_manext) $(DESTDIR)$(mandir)/man$(prog_manext)/wineg++.$(prog_manext) + $(DESTDIR)$(mandir)/man$(prog_manext)/winegcc.$(prog_manext) $(DESTDIR)$(mandir)/man$(prog_manext)/wineg++.$(prog_manext) \ + $(DESTDIR)$(mandir)/man$(prog_manext)/winecpp.$(prog_manext)