summaryrefslogtreecommitdiff
path: root/mk
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2006-06-09 08:20:30 +0000
committerjlam <jlam@pkgsrc.org>2006-06-09 08:20:30 +0000
commit2b9c2495b3a40789e4fca2e553755d2c71d59fea (patch)
tree235e34559d4c459e8eb20618d2469ce3908e5c96 /mk
parentb42bb0399833ca4590941e75aa4a130667752d1c (diff)
downloadpkgsrc-2b9c2495b3a40789e4fca2e553755d2c71d59fea.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.mk4
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