From c1479ae228754bb91bfe13039652e3a74cbb678d Mon Sep 17 00:00:00 2001 From: Christian Hofstaedtler Date: Mon, 26 Jan 2015 23:08:10 +0100 Subject: [PATCH] Fix (some) out of tree build failures --- modules/bindbackend/Makefile.am | 2 +- pdns/Makefile.am | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/bindbackend/Makefile.am b/modules/bindbackend/Makefile.am index fdcfd85528..ebde762e2d 100644 --- a/modules/bindbackend/Makefile.am +++ b/modules/bindbackend/Makefile.am @@ -18,7 +18,7 @@ libbindbackend_la_SOURCES = \ libbindbackend_la_LDFLAGS = -module -avoid-version ../../pdns/bind-dnssec.schema.sqlite3.sql.h: ../../pdns/bind-dnssec.schema.sqlite3.sql - ( echo 'static char sqlCreate[] __attribute__((unused))=' ; sed 's/$$/"/g' ../../pdns/bind-dnssec.schema.sqlite3.sql | sed 's/^/"/g' ; echo ';' ) > $@ + ( echo 'static char sqlCreate[] __attribute__((unused))=' ; sed 's/$$/"/g' $< | sed 's/^/"/g' ; echo ';' ) > $@ # for bindparser.h/hh .hh.h: diff --git a/pdns/Makefile.am b/pdns/Makefile.am index daec7ea270..4d439dbc59 100644 --- a/pdns/Makefile.am +++ b/pdns/Makefile.am @@ -1015,10 +1015,10 @@ check-local: endif dnslabeltext.cc: dnslabeltext.rl - $(AM_V_GEN)$(RAGEL) dnslabeltext.rl -o dnslabeltext.cc + $(AM_V_GEN)$(RAGEL) $< -o dnslabeltext.cc 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 ';' ) > $@ + ( echo 'static char sqlCreate[] __attribute__((unused))=' ; sed 's/$$/"/g' $< | sed 's/^/"/g' ; echo ';' ) > $@ # for bindparser.h/hh .hh.h: -- 2.47.2