From d6e55f1baf89b8498a708b78da28517a6c694862 Mon Sep 17 00:00:00 2001 From: Khaled Hosny Date: Sat, 30 Jul 2022 23:35:47 +0200 Subject: [PATCH] [automake] Use LANG=C when generating harfbuzz*.cc Since `sort` is locale-dependent. --- src/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Makefile.am b/src/Makefile.am index 9940bb652..83cda8f85 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -162,6 +162,7 @@ EXTRA_DIST += harfbuzz-subset.pc.in harfbuzz-subset.cc: Makefile.sources $(AM_V_GEN) \ + LANG=C; \ for f in \ $(HB_BASE_sources) \ $(HB_SUBSET_sources) \ @@ -295,6 +296,7 @@ $(srcdir)/%.hh: $(srcdir)/%.rl harfbuzz.cc: Makefile.sources $(AM_V_GEN) \ + LANG=C; \ for f in \ $(HB_BASE_sources) \ $(HB_GLIB_sources) \