view src/configure @ 30077:d45ee1f829ba v9.0.0376

patch 9.0.0376: clang warns for dead assignments Commit: https://github.com/vim/vim/commit/6b085b9d7367e077ca69f4f82ba0f92cc6b6e443 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sun Sep 4 12:47:21 2022 +0100 patch 9.0.0376: clang warns for dead assignments Problem: Clang warns for dead assignments. Solution: Adjust the code. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/11048)
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Sep 2022 14:00:03 +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