mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
Do not omit the Makefiles when installing the examples; they are part
of them. Also correct the omission of CVS files by abusing the find syntax instead of grepping. Closes PR #bin/636.
This commit is contained in:
parent
f8e782eea4
commit
c1f31290b8
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=10036
@ -1,4 +1,4 @@
|
||||
# $Id: Makefile,v 1.12 1994/11/08 18:54:33 phk Exp $
|
||||
# $Id: Makefile,v 1.13 1995/03/30 00:05:58 ache Exp $
|
||||
#
|
||||
# Doing a make install builds /usr/share/examples
|
||||
|
||||
@ -22,8 +22,7 @@ copies:
|
||||
@-for a in ${DIRS}; do \
|
||||
rm -rf ${DDIR}/$$a; \
|
||||
done
|
||||
find ${DIRS} -print | grep -v /CVS | \
|
||||
grep -v Makefile | cpio -dumpv ${DDIR}
|
||||
find ${DIRS} \( -name CVS -prune \) -o -print | cpio -dumpv ${DDIR}
|
||||
|
||||
symlinks:
|
||||
@${ECHO} installing symlinks in ${DDIR}
|
||||
|
Loading…
Reference in New Issue
Block a user