diff options
author | John Marino <marino@FreeBSD.org> | 2014-05-29 22:02:52 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2014-05-29 22:02:52 +0000 |
commit | 9c4f0764df7aa7d1ec2e517c0900dea6c73c2811 (patch) | |
tree | e1a378960f0598b566d3bfa633f960e05b8e8630 /math/spooles | |
parent | 8b2b8f3d8d2e8a77a6169d188832d9e51a431e58 (diff) |
math/spooles*: specify post-extraction with ${TAR}
It's possible that EXTRACT_CMD won't be predefined in the near future
in order to support distfiles in multiple formats. We know the post-
extraction tool needs to be tar, so let's specify it directly.
It may be worth looking at the post-extract target here and seeing
if it's really needed. Often one can just change the WRKSRC value to
avoid a custom post-extract taraget.
Approved by: infrastructure improvements blanket
Notes
Notes:
svn path=/head/; revision=355754
Diffstat (limited to 'math/spooles')
-rw-r--r-- | math/spooles/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/spooles/Makefile b/math/spooles/Makefile index 2949524851cd..13c1e8d496de 100644 --- a/math/spooles/Makefile +++ b/math/spooles/Makefile @@ -54,7 +54,7 @@ pre-everything:: .endif do-extract: - ${MKDIR} ${WRKSRC} ; cd ${WRKSRC} ; ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${EXTRACT_AFTER_ARGS} + ${MKDIR} ${WRKSRC} ; cd ${WRKSRC} ; ${TAR} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${EXTRACT_AFTER_ARGS} post-patch: ${MKDIR} ${WRKSRC}_SHARED ; ${CP} -r ${WRKSRC}/* ${WRKSRC}_SHARED |