From 4de307abe8e4e9c88232145b1d4ff41ddc0e3ff3 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Tue, 25 Jun 2013 19:20:03 +0200 Subject: [PATCH] correct recursive make invocation --- Makefile.am | 2 +- pdns/Makefile.am | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 07d2d4637..e1d3f75c7 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 69f8b16f0..a9157bb1f 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') -- 2.49.0