From 5880ab06030dd7e3f77711319480cd908ca19195 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sun, 22 Jan 2023 16:20:23 -0700 Subject: [PATCH] [hb-info] More build fix try --- util/Makefile.am | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/util/Makefile.am b/util/Makefile.am index d4ac85986..89715a6c9 100644 --- a/util/Makefile.am +++ b/util/Makefile.am @@ -52,11 +52,17 @@ hb_shape_SOURCES = $(HB_SHAPE_sources) bin_PROGRAMS += hb-shape hb_info_SOURCES = $(HB_INFO_sources) -#if HAVE_GOBJECT +if HAVE_GOBJECT hb_info_LDADD = \ $(top_builddir)/src/libharfbuzz-gobject.la \ - $(LDADD) -#endif + $(LDADD) \ + $(GOBJECT_LIBS) \ + $(NULL) +else +hb_info_LDADD = \ + $(LDADD) \ + $(NULL) +endif # HAVE_GOBJECT bin_PROGRAMS += hb-info hb_subset_SOURCES = $(HB_SUBSET_CLI_sources)