home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.2.367 < prev    next >
Encoding:
Internet Message Format  |  2004-03-15  |  1.8 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.367
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.2.367
  11. Problem:    Building the help tags file while installing may fail if there is
  12.         another Vim in $PATH.
  13. Solution:   Specify the just installed Vim executable. (Gordon Prieur)
  14. Files:        src/Makefile
  15.  
  16.  
  17. *** ../vim-6.2.366/src/Makefile    Tue Mar  2 14:15:55 2004
  18. --- src/Makefile    Tue Mar 16 18:29:19 2004
  19. ***************
  20. *** 1655,1661 ****
  21.       chmod $(MANMOD) $(DEST_MAN)/$(EVIMNAME).1
  22.       @echo generating help tags
  23.   # Generate the help tags with ":helptags" to handle all languages.
  24. !     -@cd $(HELPSOURCE); VIMEXE=$(VIMTARGET) $(MAKE) vimtags
  25.       cd $(HELPSOURCE); \
  26.           files=`ls *.txt tags`; \
  27.           files="$$files `ls *.??x tags-?? 2>/dev/null || true`"; \
  28. --- 1671,1677 ----
  29.       chmod $(MANMOD) $(DEST_MAN)/$(EVIMNAME).1
  30.       @echo generating help tags
  31.   # Generate the help tags with ":helptags" to handle all languages.
  32. !     -@cd $(HELPSOURCE); $(MAKE) VIMEXE=$(DEST_BIN)/$(VIMTARGET) vimtags
  33.       cd $(HELPSOURCE); \
  34.           files=`ls *.txt tags`; \
  35.           files="$$files `ls *.??x tags-?? 2>/dev/null || true`"; \
  36. *** ../vim-6.2.366/src/version.c    Tue Mar 16 20:54:00 2004
  37. --- src/version.c    Tue Mar 16 22:46:40 2004
  38. ***************
  39. *** 639,640 ****
  40. --- 639,642 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     367,
  44.   /**/
  45.  
  46. -- 
  47. Portable Computer:  A device invented to force businessmen
  48. to work at home, on vacation, and on business trips.
  49.  
  50.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  51. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  52. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  53.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  54.