]> git.notmuchmail.org Git - notmuch/commitdiff
Use $(MAKE) when invoking make from make.
authorCarl Worth <cworth@cworth.org>
Fri, 13 Nov 2009 06:00:51 +0000 (22:00 -0800)
committerCarl Worth <cworth@cworth.org>
Fri, 13 Nov 2009 06:00:51 +0000 (22:00 -0800)
Without this, things like MAKEFLAGS=-j4 can't work.

lib/Makefile

index 80d7059c00be8d143db72e7821846b108a4a6313..9a29ffcfdd3427ced79a2cb0d003d1e0f97cc235 100644 (file)
@@ -1,5 +1,5 @@
 all:
-       make -C .. all
+       $(MAKE) -C .. all
 
 clean:
-       make -C .. clean
+       $(MAKE) -C .. clean