annotate src/configure @ 32633:a8577b9dab80
v9.0.1648
patch 9.0.1648: result of syntax tests is hard to see
Commit: https://github.com/vim/vim/commit/031d6321885c15c054d28e3a434de743c1b3193d
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jun 22 22:38:54 2023 +0100
patch 9.0.1648: result of syntax tests is hard to see
Problem: Result of syntax tests is hard to see.
Solution: List the failed tests.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 22 Jun 2023 23:45:03 +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
|