change COOKIE directory from .CURDIR to WRKDIR since a user may not have

write permission to .CURDIR but write permission to WRKDIR.
Also, WRKDIR may be deleted and cookie still exist in CURDIR.
This commit is contained in:
Steven Wallace 1994-09-22 07:45:30 +00:00
parent fd437b2bb2
commit 5df5c6ab16
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=2974

View File

@ -3,7 +3,7 @@
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
#
# $Id: bsd.port.mk,v 1.38 1994/09/19 00:41:03 ache Exp $
# $Id: bsd.port.mk,v 1.39 1994/09/19 01:08:35 jkh Exp $
#
# Please view me with 4 column tabs!
@ -99,8 +99,8 @@ PKGDIR?= ${.CURDIR}/pkg
# Change these if you'd prefer to keep the cookies someplace else.
EXTRACT_COOKIE?= ${.CURDIR}/.extract_done
CONFIGURE_COOKIE?= ${.CURDIR}/.configure_done
EXTRACT_COOKIE?= ${WRKDIR}/.extract_done
CONFIGURE_COOKIE?= ${WRKDIR}/.configure_done
# How to do nothing. Override if you, for some strange reason, would rather
# do something.