From 75c0aef55a6135a0398d520519e79df2b3a21e0e Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Sun, 13 Mar 2022 13:33:51 -0700 Subject: [PATCH] Makefile: Fix running "make dist" before "make all". Otherwise, there's a race between generating and using config.h, which causes build failures. This happens particularly with the PSPP autobuilder. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 1c345a1441..8ed323b399 100644 --- a/Makefile.am +++ b/Makefile.am @@ -152,7 +152,7 @@ distfiles: Makefile CLEANFILES += distfiles gitfiles missing-distfiles PHONY += dist-hook-git -$(bin_PROGRAMS) $(RECURSIVE_TARGETS) dist: $(BUILT_SOURCES) gl/libgl.la +$(bin_PROGRAMS) $(RECURSIVE_TARGETS) dist: $(BUILT_SOURCES) config.h -- 2.30.2