From: Otto Moerbeek Date: Thu, 3 Jul 2025 07:42:48 +0000 (+0200) Subject: A litle bit more logging, so it's easier to see what's going on X-Git-Tag: rec-5.3.0-alpha2~11^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a2daa39bf66e138a4da879131ece3fb3d241c01;p=thirdparty%2Fpdns.git A litle bit more logging, so it's easier to see what's going on It looks like meson hides build steps if they do not produce any output Signed-off-by: Otto Moerbeek --- diff --git a/pdns/recursordist/meson.build b/pdns/recursordist/meson.build index 9f37468907..883587ec0b 100644 --- a/pdns/recursordist/meson.build +++ b/pdns/recursordist/meson.build @@ -358,7 +358,7 @@ if fs.is_file(src_dir / 'pubsuffix.cc') cp_command = find_program('cp') pubsuffix_cc = custom_target( 'cp-pubsuffix', - command: [cp_command, '-p', '@INPUT@', '@OUTPUT@'], + command: [cp_command, '-pv', '@INPUT@', '@OUTPUT@'], input: src_dir / 'pubsuffix.cc', output: 'pubsuffix.cc', ) diff --git a/pdns/recursordist/mkpubsuffixcc b/pdns/recursordist/mkpubsuffixcc index b976b51a8b..9296d097f0 100755 --- a/pdns/recursordist/mkpubsuffixcc +++ b/pdns/recursordist/mkpubsuffixcc @@ -4,6 +4,7 @@ if [ -z "$1" ]; then exit 1 fi set -e +echo "Downloading public suffix data and generating $1" temp=$(mktemp pubsuffixXXXXXX) curl -s -S https://publicsuffix.org/list/public_suffix_list.dat > $temp (echo "const char* g_pubsuffix[]={";