From f64e6318f031a15d7e727d6f4864a3d2e973aab0 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Mon, 30 Oct 2023 11:23:47 +0000 Subject: [PATCH] Makefile.am: fix `cp` to preserve attributes and timestamp --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index c82d9bbb..cd8f428a 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,7 +55,7 @@ dist-hook: (distit=`find $(srcdir) -name "*.dist"`; \ for file in $$distit; do \ strip=`echo $$file | sed -e s/^$(srcdir)// -e s/\.dist//`; \ - cp $$file $(distdir)$$strip; \ + cp -p $$file $(distdir)$$strip; \ done) # Code Coverage