Follow symlinks when copying example files. From Greg Hudson.

This commit is contained in:
mycroft 1995-04-16 19:04:49 +00:00
parent 1d829dc021
commit 5793176678
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.11 1994/07/21 07:33:01 cgd Exp $
# $Id: Makefile,v 1.12 1995/04/16 19:04:49 mycroft Exp $
#
FILES= README syscall vfs misc
@ -8,8 +8,8 @@ NOOBJ= noobj
all clean cleandir depend lint tags:
install:
find ${FILES} -name CVS -prune -o -type f -print | \
cpio -pdum ${DESTDIR}${BINDIR}/lkm
find ${FILES} -follow -name CVS -prune -o -type f -print | \
cpio -pdumL ${DESTDIR}${BINDIR}/lkm
chown -R ${BINOWN}:${BINGRP} ${DESTDIR}${BINDIR}/lkm
find ${DESTDIR}${BINDIR}/lkm -type f | xargs chmod a=rX
find ${DESTDIR}${BINDIR}/lkm -type d | xargs chmod u=rwX,go=rX