diff options
-rw-r--r-- | share/examples/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/share/examples/Makefile b/share/examples/Makefile index 0b56f23..9b21c54 100644 --- a/share/examples/Makefile +++ b/share/examples/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.16 1995/09/14 23:49:21 ache Exp $ +# $Id: Makefile,v 1.17 1995/09/30 15:46:54 jfieber Exp $ # # Doing a make install builds /usr/share/examples @@ -19,10 +19,8 @@ beforeinstall: ${SHARED} copies: @${ECHO} installing ${DDIR} - @-for a in ${DIRS}; do \ - rm -rf ${DDIR}/$$a; \ - done - find ${DIRS} \( -name CVS -prune \) -o -print | cpio -dumpv ${DDIR} + find ${DIRS} \( -name CVS -prune \) -o -type f -print -exec \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 644 {} ${DDIR}/{} \; symlinks: @${ECHO} installing symlinks in ${DDIR} |