From: Peter van Dijk Date: Tue, 25 Jun 2013 17:20:03 +0000 (+0200) Subject: correct recursive make invocation X-Git-Tag: auth-3.3-rc2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4de307abe8e4e9c88232145b1d4ff41ddc0e3ff3;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 69f8b16f09..a9157bb1f9 100644 --- a/pdns/Makefile.am +++ b/pdns/Makefile.am @@ -290,10 +290,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')