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 | a4dea7213f39d511deba61c42a068f5bf251a8f8 (patch) | |
tree | 4dda3d4825123ced81e5abc8c4cf6589642e1b3a /mk | |
parent | 572650731fc1facd33702e1e0906e38f3308c675 (diff) | |
download | pkgsrc-a4dea7213f39d511deba61c42a068f5bf251a8f8.tar.gz |
EXTRACT_CMD_DEFAULT should not be set by the package; it may only be used.
Diffstat (limited to 'mk')
-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 |