diff options
author | rillig <rillig@pkgsrc.org> | 2007-01-17 12:47:21 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-01-17 12:47:21 +0000 |
commit | 36ecdf2c10b24cbe79f9ca5bd53598d9cf5ab2a5 (patch) | |
tree | 1dccef5d57746c2ef2299e919e3069d918c52a0a /mk | |
parent | d7ea2fa7bcc635345a3b69030934f0a5a305f04d (diff) | |
download | pkgsrc-36ecdf2c10b24cbe79f9ca5bd53598d9cf5ab2a5.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 +# |