diff options
author | brook <brook@pkgsrc.org> | 2020-07-31 17:04:12 +0000 |
---|---|---|
committer | brook <brook@pkgsrc.org> | 2020-07-31 17:04:12 +0000 |
commit | 635393edbbfede47d1bd4ceb7b95a24f40da45ad (patch) | |
tree | db3ea3ccb5249882a0d732dba1133e340413d018 /math | |
parent | a75f92433730f4c048349f4a3f2da38660e5305a (diff) | |
download | pkgsrc-635393edbbfede47d1bd4ceb7b95a24f40da45ad.tar.gz |
Conditionally define WRKSRC.
Conditionally define WRKSRC so that R packages with an unusual organization
can override the default.
Diffstat (limited to 'math')
-rw-r--r-- | math/R/Makefile.extension | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/R/Makefile.extension b/math/R/Makefile.extension index 79affc19791..3c1587bcd89 100644 --- a/math/R/Makefile.extension +++ b/math/R/Makefile.extension @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.extension,v 1.26 2019/11/02 16:16:18 rillig Exp $ +# $NetBSD: Makefile.extension,v 1.27 2020/07/31 17:04:12 brook Exp $ # # This Makefile fragment is included by packages for R library packages. # @@ -31,7 +31,7 @@ DIST_SUBDIR?= R CATEGORIES+= math R HOMEPAGE?= https://CRAN.R-project.org/package=${R_PKGNAME} -WRKSRC= ${WRKDIR}/${R_PKGNAME} +WRKSRC?= ${WRKDIR}/${R_PKGNAME} INSTALLATION_DIRS= ${R_LIB} |