diff options
author | agc <agc> | 2000-10-11 09:36:45 +0000 |
---|---|---|
committer | agc <agc> | 2000-10-11 09:36:45 +0000 |
commit | baef6f631390648f4f78fbd75bfab74016e4a069 (patch) | |
tree | 00339bd7f23c1d0f8d5e78d226fae6b466b99460 /x11 | |
parent | 9c1439c8b4edaafee5a0eb224ce33ad8511a722f (diff) | |
download | pkgsrc-baef6f631390648f4f78fbd75bfab74016e4a069.tar.gz |
This package used the NO_WRKDIR and NO_EXTRACT definitions. Unfortunately,
NO_WRKDIR means that the cookie files used to track progress of the
package build (.extract_done etc) get created in the cwd, which will not
work for a read-only pkgsrc. The NO_EXTRACT definition inhibits the creation
of a WRKDIR, either by mkdir(1) or by using a symlink to a build tree.
Instead use the EXTRACT_ONLY definition with an empty value to inhibit
the extraction of the DISTFILES.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/ethemes/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/x11/ethemes/Makefile b/x11/ethemes/Makefile index 713afe7c475..b66ec0c43c1 100644 --- a/x11/ethemes/Makefile +++ b/x11/ethemes/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2000/08/24 00:34:51 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2000/10/11 09:36:45 agc Exp $ DISTNAME= ethemes-0.1 CATEGORIES= x11 @@ -15,9 +15,8 @@ USE_X11BASE= yes NO_BUILD= yes NO_CONFIGURE= yes NO_PATCH= yes -NO_WRKDIR= yes -NO_EXTRACT= yes NO_CHECKSUM= yes +EXTRACT_ONLY= E_DATADIR= share/enlightenment/themes |