view src/configure @ 24319:cc40b0d66646 v8.2.2700

patch 8.2.2700: nested autocmd test fails sometimes Commit: https://github.com/vim/vim/commit/6437475ffb421d6ac35572aa779ff24b70c5206b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 3 17:22:29 2021 +0200 patch 8.2.2700: nested autocmd test fails sometimes Problem: Nested autocmd test fails sometimes. Solution: Wait for the job to finish.
author Bram Moolenaar <Bram@vim.org>
date Sat, 03 Apr 2021 17:30:05 +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