]> granicus.if.org Git - pdns/commitdiff
pdns-builder: move out the debug symbols for newer deb builds
authorPieter Lexis <pieter.lexis@powerdns.com>
Tue, 28 Aug 2018 09:22:18 +0000 (11:22 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Thu, 27 Sep 2018 11:59:31 +0000 (13:59 +0200)
builder-support/dockerfiles/Dockerfile.debbuild

index 3d3779118f38b7d55fab96770613006841310a86..1a8acdf173ef337f9e07aa7a9f5099186b0c2cb7 100644 (file)
@@ -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