view src/configure @ 20520:70986f70880a v8.2.0814

patch 8.2.0814: clang warning for implicit conversion Commit: https://github.com/vim/vim/commit/3718427ba3c28ccab30726880389e44070640d3b Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 23 19:30:05 2020 +0200 patch 8.2.0814: clang warning for implicit conversion Problem: Clang warning for implicit conversion. Solution: Add type cast. (Dominique Pelle, closes https://github.com/vim/vim/issues/6124)
author Bram Moolenaar <Bram@vim.org>
date Sat, 23 May 2020 19:45: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