1commit 7b6eb33ecd88768b28c67ce5d2d68a7eed5936b6
2Author: fanquake <fanquake@gmail.com>
3Date:   Tue Aug 25 14:34:53 2020 +0800
4
5    Remove rule that causes inadvertent header regeneration
6
7    Otherwise the makefile will needlessly attempt to re-generate the
8    headers with gperf. This can be dropped once the upstream build is fixed.
9
10    See #10851.
11
12diff --git a/src/Makefile.in b/src/Makefile.in
13index f4626ad..4ae1b00 100644
14--- a/src/Makefile.in
15+++ b/src/Makefile.in
16@@ -903,7 +903,7 @@ fcobjshash.gperf: fcobjshash.gperf.h fcobjs.h
17 	' - > $@.tmp && \
18 	mv -f $@.tmp $@ || ( $(RM) $@.tmp && false )
19
20-fcobjshash.h: fcobjshash.gperf
21+fcobjshash.h:
22 	$(AM_V_GEN) $(GPERF) -m 100 $< > $@.tmp && \
23 	mv -f $@.tmp $@ || ( $(RM) $@.tmp && false )
24
25