diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-06-13 19:19:41 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-06-13 19:19:41 +0200 |
commit | 77c193579b39bbeacd4ffa4a16b5f3cd00c39cee (patch) | |
tree | e37bb488118d4d131c3eee887928b70bdf262ebd /src/Makefile | |
parent | 795ec43112af40e02ddc8fcc1d0a7800a33f2a6e (diff) | |
download | vim-git-77c193579b39bbeacd4ffa4a16b5f3cd00c39cee.tar.gz |
updated for version 7.3.555v7.3.555
Problem: Building on IBM z/OS fails.
Solution: Adjust configure. Use the QUOTESED value from config.mk instead of
the hard coded one in Makefile. (Stephen Bovy)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 8197b120d..5a4ca885b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -875,6 +875,10 @@ LINT_OPTIONS = -beprxzF #CFLAGS = -O -Qtarget=m88110compat #EXTRA_LIBS = -lgen +# The value of QUOTESED comes from auto/config.mk. +# Uncomment the next line to use the default value. +# QUOTESED = sed -e 's/[\\"]/\\&/g' -e 's/\\"/"/' -e 's/\\";$$/";/' + ##################### end of system specific lines ################### }}} ### Names of the programs and targets {{{1 @@ -2411,7 +2415,6 @@ auto/if_perl.c: if_perl.xs auto/osdef.h: auto/config.h osdef.sh osdef1.h.in osdef2.h.in CC="$(CC) $(OSDEF_CFLAGS)" srcdir=$(srcdir) sh $(srcdir)/osdef.sh -QUOTESED = sed -e 's/[\\"]/\\&/g' -e 's/\\"/"/' -e 's/\\";$$/";/' auto/pathdef.c: Makefile auto/config.mk -@echo creating $@ -@echo '/* pathdef.c */' > $@ |