From f5131528b88f6d5a8a01f36383554f7a693e9aa3 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Thu, 22 Jan 2015 16:07:31 +0100 Subject: [PATCH] Reduce number of shell invocations in recursor 6e4dfa7e39 fixed this for auth, but we forgot to do this for the recursor. --- pdns/Makefile-recursor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/Makefile-recursor b/pdns/Makefile-recursor index 91cf6054fd..8363b50fd7 100644 --- a/pdns/Makefile-recursor +++ b/pdns/Makefile-recursor @@ -70,8 +70,8 @@ CFLAGS += -DSYSCONFDIR='"$(SYSCONFDIR)"' -DLOCALSTATEDIR='"$(LOCALSTATEDIR)"' ragel $< -o $@ # Version -build_date=$(shell LC_TIME=C date '+%Y%m%d%H%M%S') -build_host=$(shell id -u -n)@$(shell hostname -f) +build_date := $(shell LC_TIME=C date '+%Y%m%d%H%M%S') +build_host := $(shell id -u -n)@$(shell hostname -f) .PHONY: version_generated.h version_generated.h: -- 2.47.2