projects
/
notmuch.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c3c0966
)
Use $(MAKE) when invoking make from make.
author
Carl Worth
<cworth@cworth.org>
Fri, 13 Nov 2009 06:00:51 +0000
(22:00 -0800)
committer
Carl 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
patch
|
blob
|
history
diff --git
a/lib/Makefile
b/lib/Makefile
index 80d7059c00be8d143db72e7821846b108a4a6313..9a29ffcfdd3427ced79a2cb0d003d1e0f97cc235 100644
(file)
--- a/
lib/Makefile
+++ b/
lib/Makefile
@@
-1,5
+1,5
@@
all:
-
make
-C .. all
+
$(MAKE)
-C .. all
clean:
-
make
-C .. clean
+
$(MAKE)
-C .. clean