From b8ea9917db5f552e6edfcab9f87e839fa9a29ae3 Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Mon, 23 Sep 2024 14:05:41 +0200 Subject: [PATCH] Add comment --- builder-support/post-build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/builder-support/post-build b/builder-support/post-build index b2bc088315..b97d254ab1 100755 --- a/builder-support/post-build +++ b/builder-support/post-build @@ -17,6 +17,9 @@ if ! $tar --version | grep -q GNU; then exit 1 fi +# pdns (auth) is handled seperately, it needs a special find condition which is hard to do with +# vars, as we don't want the asterisks to expand prematurely. So repeat the body of the loop below +# with a find condition for pdns to exclude accidentally matching pdns-recursor*. for prog in pdns-recursor dnsdist; do if [ $(find ${SRCDIR}/dist -name "${prog}*" 2>/dev/null | wc -l) -ne 0 ]; then dst=${DESTDIR}/${prog}/${BUILDER_VERSION} -- 2.47.2