diff options
author | markd <markd@pkgsrc.org> | 2002-09-23 13:41:15 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2002-09-23 13:41:15 +0000 |
commit | bf511b48c1d66ed858944f458ee765ea3a2057a4 (patch) | |
tree | caa134570c48a3ebbb9a9b5dbcfee75c4703db88 /math/R/Makefile | |
parent | 427592ad77316e341923188a621256b59d3bef94 (diff) | |
download | pkgsrc-bf511b48c1d66ed858944f458ee765ea3a2057a4.tar.gz |
find ... -or ... -> find ... -o ... for more portability.
Diffstat (limited to 'math/R/Makefile')
-rw-r--r-- | math/R/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/R/Makefile b/math/R/Makefile index 6a8c15c1c95..15cba516c73 100644 --- a/math/R/Makefile +++ b/math/R/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.37 2002/09/09 00:59:00 markd Exp $ +# $NetBSD: Makefile,v 1.38 2002/09/23 13:41:15 markd Exp $ DISTNAME= R-1.5.1 CATEGORIES= math @@ -92,7 +92,7 @@ post-install: ${CAT} ${PKGDIR}/PLIST > ${PLIST_SRC} ( cd ${PREFIX}; \ for dir in ${INSTALL_DIRS}; do \ - ${FIND} $${dir#${PREFIX}/} \( -type f -or -type l \) -print; \ + ${FIND} $${dir#${PREFIX}/} \( -type f -o -type l \) -print; \ done; \ ) | ${GREP} -v "lib/R/doc/html/packages.html" | \ ${GREP} -v "lib/R/doc/html/search/index.txt" | \ |