diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-03-27 17:40:59 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-03-27 17:40:59 +0100 |
commit | 7db7784103306cfa7db4e94acf9b1bc2b0bc3888 (patch) | |
tree | 4aabc5bceebc647906cb173762bebdbbabae425b /src/Makefile | |
parent | a6fd37be4fa01cef4bc4368f8fa814d9c6d084fd (diff) | |
download | vim-7db7784103306cfa7db4e94acf9b1bc2b0bc3888.zip |
updated for version 7.4.223
Problem: Still using an older autoconf version.
Solution: Switch to autoconf 2.69.
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 4e9b5f14c..ffa8d246e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -586,6 +586,9 @@ CClink = $(CC) # as root: sysctl -w vm.max_proc_mmap=30000 #EXTRA_LIBS = /usr/local/lib/libefence.a +# Autoconf binary. +AUTOCONF = autoconf + # PURIFY - remove the # to use the "purify" program (hoi Nia++!) #PURIFY = purify @@ -1713,7 +1716,7 @@ reconfig: scratch clean # - Uses ">config.log" instead of "./config.log". autoconf: if test ! -f configure.save; then mv configure configure.save; fi - autoconf + $(AUTOCONF) sed -e 's+>config.log+>auto/config.log+' -e 's+\./config.log+auto/config.log+' configure > auto/configure chmod 755 auto/configure mv -f configure.save configure |