From 76ba619daa2a3e01a37528270774f9011ea42d53 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Tue, 23 Jun 2020 20:49:43 +0430 Subject: [PATCH] Fix autotools's harfbuzz.cc build How this works? gen-harfbuzzcc.py operates at its own source path (see its 7th line) and that is reliable when used both on meson and autotools. Just like 19ecabed, weirdly this didn't come up sooner, guess it has something to do with timestamps. Fortunately whole harfbuzz.cc just doesn't matter for packagers but we can tag a release only for this if needed. --- src/Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 633e993bf..32c6f1b79 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -277,8 +277,7 @@ $(srcdir)/%.hh: $(srcdir)/%.rl harfbuzz.cc: Makefile.sources $(AM_V_GEN) \ - $(srcdir)/gen-harfbuzzcc.py \ - $(srcdir)/harfbuzz.cc \ + $(srcdir)/gen-harfbuzzcc.py harfbuzz.cc \ $(HB_BASE_sources) \ $(HB_GLIB_sources) \ $(HB_FT_sources) \