From: Carl Worth Date: Fri, 13 Nov 2009 06:00:51 +0000 (-0800) Subject: Use $(MAKE) when invoking make from make. X-Git-Tag: 0.1~510 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=184c327692b8a8fc08a8b9ddee28d7082c208c23;ds=sidebyside Use $(MAKE) when invoking make from make. Without this, things like MAKEFLAGS=-j4 can't work. --- 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