diff options
author | jlam <jlam@pkgsrc.org> | 2006-06-09 08:20:30 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-06-09 08:20:30 +0000 |
commit | 4ec1bd4ca925e7fb798df49bf182eb0ee9fa3ffd (patch) | |
tree | 235e34559d4c459e8eb20618d2469ce3908e5c96 /mk | |
parent | f25f233c1e32b15af7b3619291841647c4a2b659 (diff) | |
download | pkgsrc-4ec1bd4ca925e7fb798df49bf182eb0ee9fa3ffd.tar.gz |
No need to synthesis the package directory from components when ${.CURDIR}
already has the right value.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/extract/extract.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/extract/extract.mk b/mk/extract/extract.mk index e3d2e4d97bb..7ffce785ed2 100644 --- a/mk/extract/extract.mk +++ b/mk/extract/extract.mk @@ -1,4 +1,4 @@ -# $NetBSD: extract.mk,v 1.5 2006/06/08 16:21:51 jlam Exp $ +# $NetBSD: extract.mk,v 1.6 2006/06/09 08:20:30 jlam Exp $ # # The following variables may be set by the package Makefile and # specify how extraction happens: @@ -97,7 +97,7 @@ extract-check-interactive: .if !empty(INTERACTIVE_STAGE:Mextract) && defined(BATCH) @${ERROR_MSG} "The extract stage of this package requires user interaction" @${ERROR_MSG} "Please extract manually with:" - @${ERROR_MSG} " \"cd ${PKGSRCDIR}/${PKGPATH} && ${MAKE} extract\"" + @${ERROR_MSG} " \"cd ${.CURDIR} && ${MAKE} extract\"" @${TOUCH} ${_INTERACTIVE_COOKIE} @${FALSE} .else |