From 184c327692b8a8fc08a8b9ddee28d7082c208c23 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 12 Nov 2009 22:00:51 -0800 Subject: [PATCH] Use $(MAKE) when invoking make from make. Without this, things like MAKEFLAGS=-j4 can't work. --- lib/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Makefile b/lib/Makefile index 80d7059c..9a29ffcf 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -1,5 +1,5 @@ all: - make -C .. all + $(MAKE) -C .. all clean: - make -C .. clean + $(MAKE) -C .. clean -- 2.43.0