view src/configure @ 11919:cca097489de5 v8.0.0839

patch 8.0.0839: cannot kill a job in a terminal with CTRL-C commit https://github.com/vim/vim/commit/fae428354213b54626ff9e29faa5fd86161da942 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 1 22:24:26 2017 +0200 patch 8.0.0839: cannot kill a job in a terminal with CTRL-C Problem: Cannot kill a job in a terminal with CTRL-C. Solution: Set the controlling tty and send SIGINT. (closes https://github.com/vim/vim/issues/1910)
author Christian Brabandt <cb@256bit.org>
date Tue, 01 Aug 2017 22:30: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