From: Stefan Bühler Date: Tue, 19 Nov 2013 11:50:18 +0000 (+0100) Subject: fix bindbackend build with new automake versions X-Git-Tag: rec-3.6.0-rc1~338 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=04b88f5a48be1ff2dc49bbe55821781ad104c110;p=pdns fix bindbackend build with new automake versions new automake versions generate .hh from .yy with yacc, older versions generate .h copy the .hh -> .h rule from pdns/Makefile.am --- diff --git a/modules/bindbackend/Makefile.am b/modules/bindbackend/Makefile.am index bedfd5029..5686f0377 100644 --- a/modules/bindbackend/Makefile.am +++ b/modules/bindbackend/Makefile.am @@ -14,3 +14,7 @@ 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 ';' ) > $@ + +# for bindparser.h/hh +.hh.h: + cp $< $@