view src/configure @ 12618:53ee2223fb0a v8.0.1187

patch 8.0.1187: building with lua fails for OSX on Travis commit https://github.com/vim/vim/commit/8065cf2bfba93a8aeed29f591152edeb0841bff6 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 12 21:45:23 2017 +0200 patch 8.0.1187: building with lua fails for OSX on Travis Problem: Building with lua fails for OSX on Travis. Solution: Separate brew-update and brew-install. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/2203)
author Christian Brabandt <cb@256bit.org>
date Thu, 12 Oct 2017 22: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