summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/vim/files/racefix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/vim/files/racefix.patch')
-rw-r--r--meta/recipes-support/vim/files/racefix.patch12
1 files changed, 8 insertions, 4 deletions
diff --git a/meta/recipes-support/vim/files/racefix.patch b/meta/recipes-support/vim/files/racefix.patch
index 1cb8fb442f..34bd37d650 100644
--- a/meta/recipes-support/vim/files/racefix.patch
+++ b/meta/recipes-support/vim/files/racefix.patch
@@ -1,9 +1,13 @@
1po/Makefile: Avoid race over LINGUAS file
2
1The creation of the LINGUAS file is duplicated for each desktop file 3The creation of the LINGUAS file is duplicated for each desktop file
2which can lead the commands to race against each other. Rework 4which can lead the commands to race against each other. One target might
3the makefile to avoid this as the expense of leaving the file on disk. 5remove it before another has been able to use it. Rework the makefile to
6avoid this as the expense of leaving the file on disk.
7
8Signed-off-by: Richard Purdie richard.purdie@linuxfoundation.org
4 9
5Upstream-Status: Pending 10Upstream-Status: Submitted [https://github.com/vim/vim/pull/10776]
6RP 2021/2/15
7 11
8Index: git/src/po/Makefile 12Index: git/src/po/Makefile
9=================================================================== 13===================================================================