view src/configure @ 17153:53ae08e30d1c v8.1.1576

patch 8.1.1576: compiler warning for unused argument commit https://github.com/vim/vim/commit/405bb4273499a1f59c004cae78bae200e93fa8a7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 21 00:12:29 2019 +0200 patch 8.1.1576: compiler warning for unused argument Problem: Compiler warning for unused argument. Solution: Add "UNUSED" annotation. (Dominique Pelle, closes https://github.com/vim/vim/issues/4570)
author Bram Moolenaar <Bram@vim.org>
date Fri, 21 Jun 2019 00:15: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