From 6bb6d2e7bb348c99313051d091cc3375e869b8e6 Mon Sep 17 00:00:00 2001 From: mycroft Date: Fri, 9 Jul 1993 04:27:33 +0000 Subject: [PATCH] Add comment about oddity in find for anyone who might wonder. --- share/lkm/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/share/lkm/Makefile b/share/lkm/Makefile index 6bb497e957f2..936a34dcb1e3 100644 --- a/share/lkm/Makefile +++ b/share/lkm/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.2 1993/07/09 04:24:28 mycroft Exp $ +# $Id: Makefile,v 1.3 1993/07/09 04:27:33 mycroft Exp $ # FILES= README syscall vfs misc @@ -16,6 +16,9 @@ install: else \ true ; \ fi +# XXX: +# Must do these separately if we want to preserve mod times on directories +# because -prune doesn't work correctly with -depth. find ${FILES} -name CVS -prune -o -type f -print | cpio -pdum ${DESTDIR}${BINDIR}/lkm find ${FILES} -name CVS -prune -o -type d -print | cpio -pdum ${DESTDIR}${BINDIR}/lkm