diff options
author | rillig <rillig@pkgsrc.org> | 2006-06-06 16:33:48 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-06-06 16:33:48 +0000 |
commit | f28d50a62b4b2b702ff9e05b1189a2771f3d4dc1 (patch) | |
tree | 4dda3d4825123ced81e5abc8c4cf6589642e1b3a /mk/extract | |
parent | c099ed53ed816f49e80a87448f341d2a02634149 (diff) | |
download | pkgsrc-f28d50a62b4b2b702ff9e05b1189a2771f3d4dc1.tar.gz |
EXTRACT_CMD_DEFAULT should not be set by the package; it may only be used.
Diffstat (limited to 'mk/extract')
-rw-r--r-- | mk/extract/extract.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mk/extract/extract.mk b/mk/extract/extract.mk index 2b78e4b9aaa..e08ba63044c 100644 --- a/mk/extract/extract.mk +++ b/mk/extract/extract.mk @@ -1,4 +1,4 @@ -# $NetBSD: extract.mk,v 1.2 2006/06/06 06:30:29 jlam Exp $ +# $NetBSD: extract.mk,v 1.3 2006/06/06 16:33:48 rillig Exp $ # # The following variables may be set by the package Makefile and # specify how extraction happens: @@ -7,10 +7,6 @@ # an archive named by the variable ${DOWNLOADED_DISTFILE} to the # current working directory. The default is ${EXTRACT_CMD_DEFAULT}. # -# EXTRACT_CMD_DEFAULT uses the "extract" script to unpack archives. The -# precise manner in which extraction occurs may be tweaked by setting -# EXTRACT_OPTS, EXTRACT_USING and EXTRACT_ELEMENTS. -# # EXTRACT_OPTS is a list of options to pass to the "extract" script # when using EXTRACT_CMD_DEFAULT. See the comments at the head of # the "extract" script for a definitive list of the available @@ -34,6 +30,10 @@ # # EXTRACT_CMD= ${TAIL} +25 ${DOWNLOADED_DISTFILE} > foo.pl # +# EXTRACT_CMD_DEFAULT uses the "extract" script to unpack archives. The +# precise manner in which extraction occurs may be tweaked by setting +# EXTRACT_OPTS, EXTRACT_USING and EXTRACT_ELEMENTS. +# _EXTRACT_COOKIE= ${WRKDIR}/.extract_done |