view src/configure @ 31511:90d7dfb0003d v9.0.1088

patch 9.0.1088: clang warns for unused variable Commit: https://github.com/vim/vim/commit/9fca133eb78ce25531da394db904c4fa8d40b35c Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 22 21:06:41 2022 +0000 patch 9.0.1088: clang warns for unused variable Problem: Clang warns for unused variable. Solution: Adjust #ifdef. (John Marriott)
author Bram Moolenaar <Bram@vim.org>
date Thu, 22 Dec 2022 22: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