]> git.wh0rd.org - fontconfig.git/commitdiff
Parallel build fix for fcalias.h and fcaliastail.h
authorKeith Packard <keithp@neko.keithp.com>
Thu, 7 Sep 2006 00:43:08 +0000 (17:43 -0700)
committerKeith Packard <keithp@neko.keithp.com>
Thu, 7 Sep 2006 00:43:08 +0000 (17:43 -0700)
These are built from the same script, but creating a single dependency rule
caused parallel make to run the script twice.

src/Makefile.am

index 98e353d58999dcf2ed57573bbd7bbd859499189f..126d01a5aa90b757c2627456fc6006ca480bcf05 100644 (file)
@@ -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)