]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
A litle bit more logging, so it's easier to see what's going on
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Thu, 3 Jul 2025 07:42:48 +0000 (09:42 +0200)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Thu, 3 Jul 2025 07:46:09 +0000 (09:46 +0200)
It looks like meson hides build steps if they do not produce any output

Signed-off-by: Otto Moerbeek <otto.moerbeek@open-xchange.com>
pdns/recursordist/meson.build
pdns/recursordist/mkpubsuffixcc

index 9f374689072a441d48068b18ae76a495959b5c0c..883587ec0b9c7a8492653e9f29ef6b8d5f1c13b3 100644 (file)
@@ -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',
   )
index b976b51a8bb6c08f31b3aed4b456c963ff7d91e0..9296d097f06786523f2e922af7732879779f0d72 100755 (executable)
@@ -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[]={";