annotate src/configure @ 11223:ac36e139510f
v8.0.0498
patch 8.0.0498: two autocmd tests are skipped on MS-Windows
commit https://github.com/vim/vim/commit/e94260f3582cf928cc59e792b3b6ede57794a4a6
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Mar 21 15:50:12 2017 +0100
patch 8.0.0498: two autocmd tests are skipped on MS-Windows
Problem: Two autocmd tests are skipped on MS-Windows.
Solution: Make the test pass on MS-Windows. Write the messages in a file
instead of getting the output of system().
author |
Christian Brabandt <cb@256bit.org> |
date |
Tue, 21 Mar 2017 16:00:05 +0100 |
parents |
cd9471bd8e9e |
children |
|
rev |
line source |
7
|
1 #! /bin/sh
|
|
2 # run the automatically generated configure script
|
|
3 CONFIG_STATUS=auto/config.status \
|
615
|
4 auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache
|
921
|
5 result=$?
|
|
6
|
128
|
7 # Stupid autoconf 2.5x causes this file to be left behind.
|
|
8 if test -f configure.lineno; then rm -f configure.lineno; fi
|
921
|
9
|
|
10 exit $result
|