From: Peter van Dijk Date: Tue, 25 Jun 2013 17:20:03 +0000 (+0200) Subject: correct recursive make invocation X-Git-Tag: rec-3.6.0-rc1~626^2~4 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b40ea86c575fd99f78ba61d16a356b27fc7dc453;p=thirdparty%2Fpdns.git correct recursive make invocation --- diff --git a/Makefile.am b/Makefile.am index 07d2d46372..e1d3f75c7e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,7 +16,7 @@ if TOOLS endif pdns/docs/dnstcpbench.1: - make -C pdns/docs dnstcpbench.1 + cd pdns/docs && $(MAKE) dnstcpbench.1 install-exec-local: -@chmod +x pdns/pdns diff --git a/pdns/Makefile.am b/pdns/Makefile.am index 1943c892f2..677c940e87 100644 --- a/pdns/Makefile.am +++ b/pdns/Makefile.am @@ -298,10 +298,10 @@ bind-dnssec.schema.sqlite3.sql.h: bind-dnssec.schema.sqlite3.sql ( echo 'static char sqlCreate[] __attribute__((unused))=' ; sed 's/$$/"/g' bind-dnssec.schema.sqlite3.sql | sed 's/^/"/g' ; echo ';' ) > $@ backends/bind/bindlexer.c: - make -C backends/bind bindlexer.c + cd backends/bind && $(MAKE) bindlexer.c backends/bind/bindparser.cc: - make -C backends/bind bindparser.cc + cd backends/bind && $(MAKE) bindparser.cc build_date=$(shell LC_TIME=C date '+%Y%m%d%H%M%S')