|
Karsten Hopp |
6c586f |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
6c586f |
Subject: Patch 7.3.485
|
|
Karsten Hopp |
6c586f |
Fcc: outbox
|
|
Karsten Hopp |
6c586f |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
6c586f |
Mime-Version: 1.0
|
|
Karsten Hopp |
6c586f |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
6c586f |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
6c586f |
------------
|
|
Karsten Hopp |
6c586f |
|
|
Karsten Hopp |
6c586f |
Patch 7.3.485
|
|
Karsten Hopp |
6c586f |
Problem: When building Vim LDFLAGS isn't passed on to building xxd.
|
|
Karsten Hopp |
6c586f |
Solution: Pass the LDFLAGS value. (James McCoy)
|
|
Karsten Hopp |
6c586f |
Files: src/Makefile
|
|
Karsten Hopp |
6c586f |
|
|
Karsten Hopp |
6c586f |
|
|
Karsten Hopp |
6c586f |
*** ../vim-7.3.484/src/Makefile 2011-12-14 20:51:19.000000000 +0100
|
|
Karsten Hopp |
6c586f |
--- src/Makefile 2012-03-28 17:16:06.000000000 +0200
|
|
Karsten Hopp |
6c586f |
***************
|
|
Karsten Hopp |
6c586f |
*** 1720,1726 ****
|
|
Karsten Hopp |
6c586f |
sh $(srcdir)/link.sh
|
|
Karsten Hopp |
6c586f |
|
|
Karsten Hopp |
6c586f |
xxd/xxd$(EXEEXT): xxd/xxd.c
|
|
Karsten Hopp |
6c586f |
! cd xxd; CC="$(CC)" CFLAGS="$(CPPFLAGS) $(CFLAGS)" \
|
|
Karsten Hopp |
6c586f |
$(MAKE) -f Makefile
|
|
Karsten Hopp |
6c586f |
|
|
Karsten Hopp |
6c586f |
# Build the language specific files if they were unpacked.
|
|
Karsten Hopp |
6c586f |
--- 1720,1726 ----
|
|
Karsten Hopp |
6c586f |
sh $(srcdir)/link.sh
|
|
Karsten Hopp |
6c586f |
|
|
Karsten Hopp |
6c586f |
xxd/xxd$(EXEEXT): xxd/xxd.c
|
|
Karsten Hopp |
6c586f |
! cd xxd; CC="$(CC)" CFLAGS="$(CPPFLAGS) $(CFLAGS)" LDFLAGS="$(LDFLAGS)" \
|
|
Karsten Hopp |
6c586f |
$(MAKE) -f Makefile
|
|
Karsten Hopp |
6c586f |
|
|
Karsten Hopp |
6c586f |
# Build the language specific files if they were unpacked.
|
|
Karsten Hopp |
6c586f |
*** ../vim-7.3.484/src/version.c 2012-03-28 17:10:26.000000000 +0200
|
|
Karsten Hopp |
6c586f |
--- src/version.c 2012-03-28 17:16:15.000000000 +0200
|
|
Karsten Hopp |
6c586f |
***************
|
|
Karsten Hopp |
6c586f |
*** 716,717 ****
|
|
Karsten Hopp |
6c586f |
--- 716,719 ----
|
|
Karsten Hopp |
6c586f |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
6c586f |
+ /**/
|
|
Karsten Hopp |
6c586f |
+ 485,
|
|
Karsten Hopp |
6c586f |
/**/
|
|
Karsten Hopp |
6c586f |
|
|
Karsten Hopp |
6c586f |
--
|
|
Karsten Hopp |
6c586f |
GOD: That is your purpose Arthur ... the Quest for the Holy Grail ...
|
|
Karsten Hopp |
6c586f |
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
|
|
Karsten Hopp |
6c586f |
|
|
Karsten Hopp |
6c586f |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
6c586f |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
6c586f |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
6c586f |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|