diff options
| author | John Hay <jhay@FreeBSD.org> | 2001-10-22 08:56:02 +0000 |
|---|---|---|
| committer | John Hay <jhay@FreeBSD.org> | 2001-10-22 08:56:02 +0000 |
| commit | fbf68bb93294738ad03185b79a59ee6d9b12f985 (patch) | |
| tree | 35cddaab984a1742491cba96a02d102da7aa6b1c /share | |
| parent | 694725c201a1fd3f146cc88cd295a4ddce83ea23 (diff) | |
Notes
Diffstat (limited to 'share')
| -rw-r--r-- | share/examples/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/share/examples/Makefile b/share/examples/Makefile index 1f1b7e4fbd68..209f6cc84371 100644 --- a/share/examples/Makefile +++ b/share/examples/Makefile @@ -2,7 +2,7 @@ # # Doing a make install builds /usr/share/examples -DIRS!= for i in *; do \ +DIRS!= cd ${.CURDIR}; for i in *; do \ if test -d $$i -a $$i != CVS -a $$i != ipfilter; then \ echo $$i; \ fi; \ @@ -22,10 +22,11 @@ all clean cleandir depend lint tags: beforeinstall: etc-examples ${SHARED} .for dir in ${DIRS} -FILES!= find -L ${dir} \( -name CVS -prune \) -o -type f -print +FILES!= cd ${.CURDIR}; find -L ${dir} \( -name CVS -prune \) -o -type f -print .for file in ${FILES} copies:: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${file} ${DDIR}/${file} + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/${file} \ + ${DDIR}/${file} .endfor .endfor |
