mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04: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
1 changed files with 2 additions and 3 deletions
|
|
@ -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 a new issue