From 08bef687018f2391c2f2b6fc3849878c121b67dd Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Wed, 6 Sep 2006 17:43:08 -0700 Subject: [PATCH] Parallel build fix for fcalias.h and fcaliastail.h These are built from the same script, but creating a single dependency rule caused parallel make to run the script twice. --- src/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index 98e353d..126d01a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -121,7 +121,9 @@ PUBLIC_FILES = \ $(top_srcdir)/fontconfig/fcfreetype.h \ $(top_srcdir)/fontconfig/fcprivate.h -$(ALIAS_FILES): $(top_srcdir)/src/makealias $(PUBLIC_FILES) +fcaliastail.h: fcalias.h + +fcalias.h: $(top_srcdir)/src/makealias $(PUBLIC_FILES) sh $(top_srcdir)/src/makealias "$(top_srcdir)/src" $(PUBLIC_FILES) CLEANFILES := $(ALIAS_FILES) -- 2.39.2