From: Trond Norbye Date: Sun, 20 Dec 2009 21:29:01 +0000 (+0100) Subject: Don't invoke make directly in recursive make. use $(MAKE) X-Git-Tag: 0.37~44^2 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=f7ecf160cd1724def39fd7f41cbbc313ea02484e;p=awesomized%2Flibmemcached Don't invoke make directly in recursive make. use $(MAKE) --- diff --git a/Makefile.am b/Makefile.am index da5f16e2..ea950904 100644 --- a/Makefile.am +++ b/Makefile.am @@ -4,7 +4,7 @@ ACLOCAL_AMFLAGS = -I m4 SUFFIXES = PHONY = TESTS = -CLEANFILES = +CLEANFILES = bin_PROGRAMS = noinst_HEADERS = lib_LTLIBRARIES = @@ -19,7 +19,7 @@ EXTRA_DIST = README.FIRST SUBDIRS = docs libhashkit test-docs: - (cd docs && make test-docs) + (cd docs && $(MAKE) test-docs) include libmemcached/include.am include clients/include.am include tests/include.am