view src/configure @ 22238:939f7184566f v8.2.1668

patch 8.2.1668: Vim9: not accepting 0 or 1 as bool when type is any Commit: https://github.com/vim/vim/commit/dadaddd59f3b53c41e92dc42219ab006deb14109 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 12 19:11:23 2020 +0200 patch 8.2.1668: Vim9: not accepting 0 or 1 as bool when type is any Problem: Vim9: not accepting 0 or 1 as bool when type is any. Solution: Convert the type with the CHECKTYPE instruction. (closes https://github.com/vim/vim/issues/6913)
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Sep 2020 19:15:03 +0200
parents cd9471bd8e9e
children
line wrap: on
line source

#! /bin/sh
# run the automatically generated configure script
CONFIG_STATUS=auto/config.status \
	auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache
result=$?

# Stupid autoconf 2.5x causes this file to be left behind.
if test -f configure.lineno; then rm -f configure.lineno; fi

exit $result