annotate src/configure @ 14497:a7b2dc5f1306
v8.1.0262
patch 8.1.0262: not enough testing for getftype()
commit https://github.com/vim/vim/commit/1598f9937a18c056d7b713dc254325c8f8456c8f
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Aug 9 22:08:57 2018 +0200
patch 8.1.0262: not enough testing for getftype()
Problem: Not enough testing for getftype().
Solution: Add a test. (Dominique Pelle, closes https://github.com/vim/vim/issues/3300)
author |
Christian Brabandt <cb@256bit.org> |
date |
Thu, 09 Aug 2018 22:15:04 +0200 |
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
|