view src/configure @ 20417:86333cdb8cf8 v8.2.0763

patch 8.2.0763: GUI test fails without the terminal feature Commit: https://github.com/vim/vim/commit/4457e1d98f78152311495b1aff6169383d330a75 Author: Bram Moolenaar <Bram@vim.org> Date: Fri May 15 22:46:44 2020 +0200 patch 8.2.0763: GUI test fails without the terminal feature Problem: GUI test fails without the terminal feature. Solution: Check the terminal feature is supported. (Ken Takata, closes #6084)
author Bram Moolenaar <Bram@vim.org>
date Fri, 15 May 2020 23:00:04 +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