view src/configure @ 23116:55f8b7da27f3 v8.2.2104

patch 8.2.2104: build problem with Ruby 2.7 Commit: https://github.com/vim/vim/commit/d5a986f460019a924627d79350552f446505cffb Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 6 21:11:31 2020 +0100 patch 8.2.2104: build problem with Ruby 2.7 Problem: Build problem with Ruby 2.7. Solution: Adjust function declarations. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/7430)
author Bram Moolenaar <Bram@vim.org>
date Sun, 06 Dec 2020 21:15:05 +0100
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