annotate src/configure @ 26743:c2c40cefc17b
v8.2.3900
patch 8.2.3900: it is not easy to use a script-local function for an option
Commit: https://github.com/vim/vim/commit/8bb65f230d3025037f34021a72616038da0601ee
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Sun Dec 26 10:51:39 2021 +0000
patch 8.2.3900: it is not easy to use a script-local function for an option
Problem: It is not easy to use a script-local function for an option.
Solution: recognize s: and <SID> at the start of the expression. (Yegappan
Lakshmanan, closes #9401)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 26 Dec 2021 12:00:04 +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
|