From: Pieter Lexis Date: Tue, 28 Aug 2018 09:22:18 +0000 (+0200) Subject: pdns-builder: move out the debug symbols for newer deb builds X-Git-Tag: dnsdist-1.3.3~83^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35626f0fad10879094727acb65b0550f0d26bd37;p=thirdparty%2Fpdns.git pdns-builder: move out the debug symbols for newer deb builds --- diff --git a/builder-support/dockerfiles/Dockerfile.debbuild b/builder-support/dockerfiles/Dockerfile.debbuild index 3d3779118f..1a8acdf173 100644 --- a/builder-support/dockerfiles/Dockerfile.debbuild +++ b/builder-support/dockerfiles/Dockerfile.debbuild @@ -6,17 +6,17 @@ fi RUN PDNS_TEST_NO_IPV6=1 builder/helpers/build-debs.sh pdns-${BUILDER_VERSION} -RUN mv pdns*.deb /dist +RUN mv pdns*.deb /dist; mv pdns*.ddeb /dist || true @ENDIF @IF [ ! -z "$M_recursor$M_all" ] RUN builder/helpers/build-debs.sh pdns-recursor-${BUILDER_VERSION} -RUN mv pdns-recursor*.deb /dist +RUN mv pdns-recursor*.deb /dist; mv pdns-recursor*.ddeb /dist || true @ENDIF @IF [ ! -z "$M_dnsdist$M_all" ] RUN builder/helpers/build-debs.sh dnsdist-${BUILDER_VERSION} -RUN mv dnsdist*.deb /dist +RUN mv dnsdist*.deb /dist; mv dnsdist*.ddeb /dist || true @ENDIF