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 / 7.4 / 7.4.300 < prev    next >
Encoding:
Internet Message Format  |  2014-05-21  |  2.2 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.300
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.4.300
  11. Problem:    The way config.cache is removed doesn't always work.
  12. Solution:   Always remove config.cache. (Ken Takata)
  13. Files:        src/Makefile
  14.  
  15.  
  16. *** ../vim-7.4.299/src/Makefile    2014-04-29 20:04:05.331539784 +0200
  17. --- src/Makefile    2014-05-22 14:48:23.034475967 +0200
  18. ***************
  19. *** 1664,1675 ****
  20.   # auto/config.h isn't updated.  The dependency on auto/config.mk should make
  21.   # sure configure is run when it's needed.
  22.   #
  23.   config auto/config.mk: auto/configure config.mk.in config.h.in
  24. !     if test -f auto/config.cache && \
  25. !         grep '^ac_cv_env_CFLAGS_value=' auto/config.cache > /dev/null && \
  26. !         ! grep -x -F 'ac_cv_env_CFLAGS_value=$(CFLAGS)' auto/config.cache > /dev/null; then \
  27. !         rm auto/config.cache; \
  28. !     fi
  29.       if test "X$(MAKECMDGOALS)" != "Xclean" \
  30.           -a "X$(MAKECMDGOALS)" != "Xdistclean" \
  31.           -a "X$(MAKECMDGOALS)" != "Xautoconf" \
  32. --- 1664,1674 ----
  33.   # auto/config.h isn't updated.  The dependency on auto/config.mk should make
  34.   # sure configure is run when it's needed.
  35.   #
  36. + # Remove the config.cache every time, once in a while it causes problems that
  37. + # are very hard to figure out.
  38. + #
  39.   config auto/config.mk: auto/configure config.mk.in config.h.in
  40. !     -rm -f auto/config.cache
  41.       if test "X$(MAKECMDGOALS)" != "Xclean" \
  42.           -a "X$(MAKECMDGOALS)" != "Xdistclean" \
  43.           -a "X$(MAKECMDGOALS)" != "Xautoconf" \
  44. *** ../vim-7.4.299/src/version.c    2014-05-22 14:44:08.098481148 +0200
  45. --- src/version.c    2014-05-22 14:51:36.022472045 +0200
  46. ***************
  47. *** 736,737 ****
  48. --- 736,739 ----
  49.   {   /* Add new patch number below this line */
  50. + /**/
  51. +     300,
  52.   /**/
  53.  
  54.  
  55. -- 
  56. What is the difference between a professional and an amateur?
  57. The ark was built by an amateur; professionals gave us the Titanic.
  58.  
  59.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  60. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  61. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  62.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  63.