diff options
author | agc <agc@pkgsrc.org> | 2002-08-07 15:12:45 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2002-08-07 15:12:45 +0000 |
commit | b517957acd1355105e42092c14023848482a9523 (patch) | |
tree | 989da86e7adb190a994031b98beca9173ae6d222 /mk/bsd.pkg.mk | |
parent | 1e4a6db2deb1e57a1b3c7414a66a6c133dc54a13 (diff) | |
download | pkgsrc-b517957acd1355105e42092c14023848482a9523.tar.gz |
Don't create the ${INTERACTIVE_COOKIE}s in the ${WRKDIR} - this will fail
if the interactive stage is "fetch", since there will be no ${WRKDIR} at
that time.
Instead, since ${INTERACTIVE_COOKIE}s are only used in bulk builds, create
them in the package directory, along with the related .broken.`hostname`
file.
Diffstat (limited to 'mk/bsd.pkg.mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 553c03f67e1..4bac19c6f65 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1027 2002/08/06 06:11:12 jlam Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1028 2002/08/07 15:12:45 agc Exp $ # # This file is in the public domain. # @@ -387,7 +387,7 @@ INSTALL_COOKIE= ${WRKDIR}/.install_done BUILD_COOKIE= ${WRKDIR}/.build_done PATCH_COOKIE= ${WRKDIR}/.patch_done PACKAGE_COOKIE= ${WRKDIR}/.package_done -INTERACTIVE_COOKIE= ${WRKDIR}/.interactive_stage +INTERACTIVE_COOKIE= .interactive_stage NULL_COOKIE= ${WRKDIR}/.null # New message digest defs |