From a764442a57fae2490d93d2daefea5152d6213e78 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Tue, 9 Dec 2014 20:45:24 -0800 Subject: * Makefile (install-tests): Do not use option -c of cpio (use old ASCII format). This was unintentional. On extract, use -m option to preserve timestamps, like we do in INSTALL. --- ChangeLog | 7 +++++++ Makefile | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 76940942..b4efbc2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2014-12-09 Kaz Kylheku + + * Makefile (install-tests): Do not use option -c of + cpio (use old ASCII format). This was unintentional. + On extract, use -m option to preserve timestamps, + like we do in INSTALL. + 2014-12-09 Kaz Kylheku Test output goes to tst/ now. diff --git a/Makefile b/Makefile index f2abb4f1..a5075109 100644 --- a/Makefile +++ b/Makefile @@ -273,8 +273,8 @@ install-tests: $(V)rm -rf tst $(V)mkdir -p $(DESTDIR)$(datadir) $(call ABBREV3,INSTALL,$(DESTDIR)$(datadir),tests) - $(V)(find tests | cpio -co 2> /dev/null) \ - | (cd $(DESTDIR)$(datadir) ; cpio -idu 2> /dev/null) + $(V)(find tests | cpio -o 2> /dev/null) \ + | (cd $(DESTDIR)$(datadir) ; cpio -idum 2> /dev/null) $(V)(echo "#!/bin/sh" ; \ echo "set -ex" ; \ echo "cd $(datadir)" ; \ -- cgit v1.2.3