diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Makefile | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,12 @@ 2014-12-09 Kaz Kylheku <kaz@kylheku.com> + * 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 <kaz@kylheku.com> + Test output goes to tst/ now. * Makefile (TESTS_OUT): We don't need to refer to top_srcdir. @@ -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)" ; \ |