summaryrefslogtreecommitdiff
path: root/math/R/Makefile.extension
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2002-09-23 13:41:15 +0000
committermarkd <markd@pkgsrc.org>2002-09-23 13:41:15 +0000
commitbf511b48c1d66ed858944f458ee765ea3a2057a4 (patch)
treecaa134570c48a3ebbb9a9b5dbcfee75c4703db88 /math/R/Makefile.extension
parent427592ad77316e341923188a621256b59d3bef94 (diff)
downloadpkgsrc-bf511b48c1d66ed858944f458ee765ea3a2057a4.tar.gz
find ... -or ... -> find ... -o ... for more portability.
Diffstat (limited to 'math/R/Makefile.extension')
-rw-r--r--math/R/Makefile.extension4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/R/Makefile.extension b/math/R/Makefile.extension
index a22b00484d1..f4aeada6de1 100644
--- a/math/R/Makefile.extension
+++ b/math/R/Makefile.extension
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.extension,v 1.1 2002/04/23 01:14:49 markd Exp $
+# $NetBSD: Makefile.extension,v 1.2 2002/09/23 13:41:15 markd Exp $
#
# This Makefile fragment is included by packages for R library packages.
#
@@ -28,7 +28,7 @@ R_LIB= lib/R/library
R_INST_DIRS?= ${R_PKGNAME}
R_PACKLIST_FILES= ( cd ${PREFIX}; for dir in ${R_INST_DIRS}; do \
- ${FIND} ${R_LIB}/$${dir} \( -type f -or -type l \) -print; done ) | ${SORT} -u
+ ${FIND} ${R_LIB}/$${dir} \( -type f -o -type l \) -print; done ) | ${SORT} -u
R_PACKLIST_DIRS= ( cd ${PREFIX}; for dir in ${R_INST_DIRS}; do \
${FIND} ${R_LIB}/$${dir} -type d -print; done ) | ${SORT} -ur | ${SED} -e "s|^|@dirrm |"
R_PACKLIST_CMDS= ( ${ECHO} '@exec R CMD ${PERL5} %D/lib/R/share/perl/build-help.pl --htmllists 2>/dev/null'; \