From: Christian Hofstaedtler Date: Mon, 26 Jan 2015 22:08:10 +0000 (+0100) Subject: Fix (some) out of tree build failures X-Git-Tag: rec-3.7.0-rc2~25^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c1479ae228754bb91bfe13039652e3a74cbb678d;p=thirdparty%2Fpdns.git Fix (some) out of tree build failures --- 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: