view src/configure @ 14241:9abebf6e25c5 v8.1.0137

patch 8.1.0137: CI does not run with TCL commit https://github.com/vim/vim/commit/ade55787978e15fe57c5cedf38c9f85bfe1d983c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 1 21:12:55 2018 +0200 patch 8.1.0137: CI does not run with TCL Problem: CI does not run with TCL. Solution: Add TCL to the travis config. (Dominique Pelle, closes https://github.com/vim/vim/issues/3133)
author Christian Brabandt <cb@256bit.org>
date Sun, 01 Jul 2018 21:15:06 +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