annotate src/configure @ 34844:810cfae88ac7
v9.1.0291
patch 9.1.0291: filetype: libreoffice config files are not recognized
Commit: https://github.com/vim/vim/commit/73c89bcf79df280b8698f77374afabd9494dc741
Author: Wu, Zhenyu <wuzhenyu@ustc.edu>
Date: Tue Apr 9 22:20:55 2024 +0200
patch 9.1.0291: filetype: libreoffice config files are not recognized
Problem: filetype: libreoffice config files are not recognized
Solution: Detect Libreoffice config fils as xml/dosini
(Wu, Zhenyu)
closes: #14453
Signed-off-by: Wu, Zhenyu <wuzhenyu@ustc.edu>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author |
Christian Brabandt <cb@256bit.org> |
date |
Tue, 09 Apr 2024 22:30: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
|