Mercurial > vim
changeset 3127:fdc723632298 v7.3.334
updated for version 7.3.334
Problem: Latest MingW about XSUBPP referencing itself. (Gongqian Li)
Solution: Rename the first use to XSUBPPTRY.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 12 Oct 2011 14:11:45 +0200 |
parents | 409691084d19 |
children | 8b9591ccbb68 |
files | src/Make_ming.mak src/version.c |
diffstat | 2 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/Make_ming.mak +++ b/src/Make_ming.mak @@ -108,10 +108,10 @@ endif # on NT, it's here: PERLLIB=$(PERL)/lib PERLLIBS=$(PERLLIB)/Core -XSUBPP=$(PERLLIB)/ExtUtils/xsubpp -XSUBPP_EXISTS=$(shell perl -e "print 1 unless -e '$(XSUBPP)'") +XSUBPPTRY=$(PERLLIB)/ExtUtils/xsubpp +XSUBPP_EXISTS=$(shell perl -e "print 1 unless -e '$(XSUBPPTRY)'") ifeq "$(XSUBPP_EXISTS)" "" -XSUBPP=perl $(XSUBPP) +XSUBPP=perl $(XSUBPPTRY) else XSUBPP=xsubpp endif