>From 72e7810938d7c158471cf3c5889420f8b2571872 Mon Sep 17 00:00:00 2001 From: Michael Shigorin Date: Tue, 16 Jul 2019 22:53:43 +0300 Subject: [PATCH 3/4] pkg.in/Makefile: fix subdir order The old one was totally broken: we processed lower level targets before the high-level ones, and the waterfall logic is exactly the opposite here: profiles may yield groups, and groups may yield lists. This is important as lists copied are fixed up with archdep postprocessing, and if higher-level targets add up more lists afterwards these would end up as-is. --- pkg.in/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg.in/Makefile b/pkg.in/Makefile index 2afdae1..e875725 100644 --- a/pkg.in/Makefile +++ b/pkg.in/Makefile @@ -8,6 +8,6 @@ endif # sequential execution, no reason to haste all: - @for dir in lists groups profiles; do \ + @for dir in profiles groups lists; do \ $(MAKE) -C $$dir || exit; \ done -- 2.10.4