view src/configure @ 23293:a668a3cad9f6 v8.2.2192

patch 8.2.2192: Codecov on github actions fails Commit: https://github.com/vim/vim/commit/e5492609b3a153c631f1d600ecdef1af1c913bef Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 22 19:05:33 2020 +0100 patch 8.2.2192: Codecov on github actions fails Problem: Codecov on github actions fails. Solution: Revert to codecov script. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/7529)
author Bram Moolenaar <Bram@vim.org>
date Tue, 22 Dec 2020 19:15:04 +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