diff options
author | rillig <rillig> | 2007-01-17 12:47:21 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-01-17 12:47:21 +0000 |
commit | 8dd84cb1d9f7feb0a6e6d301d8e13487850733d0 (patch) | |
tree | 1dccef5d57746c2ef2299e919e3069d918c52a0a /mk | |
parent | 3379eba7c8f8ef6a9b7910619e58b9f090b9262f (diff) | |
download | pkgsrc-8dd84cb1d9f7feb0a6e6d301d8e13487850733d0.tar.gz |
Documented WRKDIR.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/help/directories.mk | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/mk/help/directories.mk b/mk/help/directories.mk index 2c56ea046c1..8a9b23a8750 100644 --- a/mk/help/directories.mk +++ b/mk/help/directories.mk @@ -1,4 +1,4 @@ -# $NetBSD: directories.mk,v 1.3 2007/01/15 06:25:41 rillig Exp $ +# $NetBSD: directories.mk,v 1.4 2007/01/17 12:47:21 rillig Exp $ # # This file contains some short documentation on the directories that # are used within pkgsrc. @@ -65,3 +65,22 @@ # # Tags: package-settable # + +# WRKDIR +# The base directory where all the work is done for building a +# package. The pkgsrc infrastructure creates various files in this +# directory, whose names all start with a dot. +# +# The default value of EXTRACT_DIR is ${WRKDIR}. +# The default value of WRKSRC is ${WRKDIR}/${DISTNAME}. +# +# When PKGSRC_LOCKTYPE is set, a lock file is placed into this +# directory to prevent multiple processes from trying to build +# the package at the same time. +# +# See also: +# EXTRACT_DIR, WRKSRC, CREATE_WRKDIR_SYMLINK, WRKOBJDIR, +# WRKDIR_BASENAME, OBJHOSTNAME, OBJMACHINE +# +# Keywords: work +# |