annotate src/configure @ 32295:bea4ebf594c6
v9.0.1479
patch 9.0.1479: small source file problems; outdated list of distrib. files
Commit: https://github.com/vim/vim/commit/f39d9e9dca443e42920066be3a98fd9780e4ed33
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Apr 22 22:54:40 2023 +0100
patch 9.0.1479: small source file problems; outdated list of distrib. files
Problem: Small source file problems; outdated list of distributed files.
Solution: Small updates to source files and list of distributed files.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Sun, 23 Apr 2023 00:00:04 +0200 |
parents |
cd9471bd8e9e |
children |
|
rev |
line source |
7
|
1 #! /bin/sh
|
|
2 # run the automatically generated configure script
|
|
3 CONFIG_STATUS=auto/config.status \
|
615
|
4 auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache
|
921
|
5 result=$?
|
|
6
|
128
|
7 # Stupid autoconf 2.5x causes this file to be left behind.
|
|
8 if test -f configure.lineno; then rm -f configure.lineno; fi
|
921
|
9
|
|
10 exit $result
|