summaryrefslogtreecommitdiff
path: root/math/R
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2002-09-26 05:36:48 +0000
committermarkd <markd@pkgsrc.org>2002-09-26 05:36:48 +0000
commit34fd0ce4df24e76032f8492142cde56eb754b6d2 (patch)
tree5a99a1d3adbdd5f23e209d25d38daab1469f00db /math/R
parentfcb11ad47724ab8743174f8e66bd757986fab0da (diff)
downloadpkgsrc-34fd0ce4df24e76032f8492142cde56eb754b6d2.tar.gz
INSTALL_DIRS -> R_INSTALL_DIRS to not conflict with the variable introduced
in bsd.pkg.mk revision 1.1045. Fixes pkg/18332
Diffstat (limited to 'math/R')
-rw-r--r--math/R/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/math/R/Makefile b/math/R/Makefile
index 15cba516c73..ada9761c670 100644
--- a/math/R/Makefile
+++ b/math/R/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.38 2002/09/23 13:41:15 markd Exp $
+# $NetBSD: Makefile,v 1.39 2002/09/26 05:36:48 markd Exp $
DISTNAME= R-1.5.1
CATEGORIES= math
@@ -66,7 +66,7 @@ INSTALL_SCRIPT= ${INSTALL} ${COPY} -m ${BINMODE}
PLIST_SRC= ${WRKDIR}/.PLIST_SRC
R_LIBDIR= ${PREFIX}/lib/R
-INSTALL_DIRS= ${R_LIBDIR}
+R_INSTALL_DIRS= ${R_LIBDIR}
# R does ugly things in the configure to get the default list of arguments
# for linking Fortran, which exposes the buildlink2 tricks so clean up
@@ -91,7 +91,7 @@ post-install:
${RM} -f ${PLIST_SRC}
${CAT} ${PKGDIR}/PLIST > ${PLIST_SRC}
( cd ${PREFIX}; \
- for dir in ${INSTALL_DIRS}; do \
+ for dir in ${R_INSTALL_DIRS}; do \
${FIND} $${dir#${PREFIX}/} \( -type f -o -type l \) -print; \
done; \
) | ${GREP} -v "lib/R/doc/html/packages.html" | \
@@ -100,7 +100,7 @@ post-install:
${ECHO} "@unexec ${RM} -f %D/lib/R/doc/html/packages.html" >> ${PLIST_SRC}
${ECHO} "@unexec ${RM} -f %D/lib/R/doc/html/search/index.txt" >> ${PLIST_SRC}
( cd ${PREFIX}; \
- for dir in ${INSTALL_DIRS}; do \
+ for dir in ${R_INSTALL_DIRS}; do \
${FIND} $${dir#${PREFIX}/} -type d -print; \
done; \
) | ${SORT} -ur | ${SED} -e "s|^|@dirrm |" >> ${PLIST_SRC}