diff options
author | jhay <jhay@FreeBSD.org> | 2001-10-22 16:32:44 +0000 |
---|---|---|
committer | jhay <jhay@FreeBSD.org> | 2001-10-22 16:32:44 +0000 |
commit | cdbf6daf535b5e35e9cecef9e9efbbc6b8e91822 (patch) | |
tree | c3ea2118feb4d3041899dccdd564709917066bc6 /share | |
parent | 335ce8775ad21b01a0a33c71ade3892b82981b08 (diff) | |
download | FreeBSD-src-cdbf6daf535b5e35e9cecef9e9efbbc6b8e91822.zip FreeBSD-src-cdbf6daf535b5e35e9cecef9e9efbbc6b8e91822.tar.gz |
Back out my previous commit. It is not necessary anymore now that Ruslan
fixed the ipfilter directory with a NOOBJ.
Diffstat (limited to 'share')
-rw-r--r-- | share/examples/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/share/examples/Makefile b/share/examples/Makefile index 209f6cc..1f1b7e4 100644 --- a/share/examples/Makefile +++ b/share/examples/Makefile @@ -2,7 +2,7 @@ # # Doing a make install builds /usr/share/examples -DIRS!= cd ${.CURDIR}; for i in *; do \ +DIRS!= for i in *; do \ if test -d $$i -a $$i != CVS -a $$i != ipfilter; then \ echo $$i; \ fi; \ @@ -22,11 +22,10 @@ all clean cleandir depend lint tags: beforeinstall: etc-examples ${SHARED} .for dir in ${DIRS} -FILES!= cd ${.CURDIR}; find -L ${dir} \( -name CVS -prune \) -o -type f -print +FILES!= find -L ${dir} \( -name CVS -prune \) -o -type f -print .for file in ${FILES} copies:: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${.CURDIR}/${file} \ - ${DDIR}/${file} + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${file} ${DDIR}/${file} .endfor .endfor |