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.307 < prev    next >
Encoding:
Internet Message Format  |  2004-02-29  |  2.1 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.2.307
  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.307 (after 6.2.299)
  11. Problem:    Installing help files fails.
  12. Solution:   Expand wildcards for translated help files separately.
  13. Files:        src/Makefile
  14.  
  15.  
  16. *** ../vim-6.2.306/src/Makefile    Sun Feb 29 21:06:13 2004
  17. --- src/Makefile    Mon Mar  1 20:03:04 2004
  18. ***************
  19. *** 1657,1663 ****
  20.   # Generate the help tags with ":helptags" to handle all languages.
  21.       -@cd $(HELPSOURCE); VIMEXE=$(VIMTARGET) $(MAKE) vimtags
  22.       cd $(HELPSOURCE); \
  23. !         files=`ls *.txt *.??x tags tags-??`; \
  24.           $(INSTALL_DATA) $$files  $(DEST_HELP); \
  25.           cd $(DEST_HELP); \
  26.           chmod $(HELPMOD) $$files
  27. --- 1667,1674 ----
  28.   # Generate the help tags with ":helptags" to handle all languages.
  29.       -@cd $(HELPSOURCE); VIMEXE=$(VIMTARGET) $(MAKE) vimtags
  30.       cd $(HELPSOURCE); \
  31. !         files=`ls *.txt tags`; \
  32. !         files="$$files `ls *.??x tags-?? 2>/dev/null || true`"; \
  33.           $(INSTALL_DATA) $$files  $(DEST_HELP); \
  34.           cd $(DEST_HELP); \
  35.           chmod $(HELPMOD) $$files
  36. *** ../vim-6.2.306/src/version.c    Mon Mar  1 21:40:02 2004
  37. --- src/version.c    Mon Mar  1 21:48:46 2004
  38. ***************
  39. *** 639,640 ****
  40. --- 639,642 ----
  41.   {   /* Add new patch number below this line */
  42. + /**/
  43. +     307,
  44.   /**/
  45.  
  46. -- 
  47. WOMAN:   I didn't know we had a king. I thought we were an autonomous
  48.          collective.
  49. DENNIS:  You're fooling yourself.  We're living in a dictatorship.  A
  50.          self-perpetuating autocracy in which the working classes--
  51. WOMAN:   Oh there you go, bringing class into it again.
  52. DENNIS:  That's what it's all about if only people would--
  53.                                   The Quest for the Holy Grail (Monty Python)
  54.  
  55.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  56. ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  57. \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
  58.  \\\  Buy at Amazon and help AIDS victims -- http://ICCF.nl/click1.html ///
  59.