diff options
author | jlam <jlam@pkgsrc.org> | 2006-06-13 13:57:10 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-06-13 13:57:10 +0000 |
commit | 8573b70d6e3121e9b86816193fc0521b174a0d7e (patch) | |
tree | 7656a27403d0ad1e916095a0a90dd5532d347f0a /pkgtools | |
parent | 0fa45ec4bd6e2119fd877b21cc168165bc6c3f35 (diff) | |
download | pkgsrc-8573b70d6e3121e9b86816193fc0521b174a0d7e.tar.gz |
This package overrides the "update" target (is that wise?) and runs
its own set of commands. One of these invoked "deinstall" with
UPDATE_RUNNING set to "YES"; however, UPDATE_RUNNING was made into a
pkgsrc private variable a little while ago. Fix "update" by setting
_UPDATE_RUNNING instead. This fixes PR pkg/33716.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/Makefile b/pkgtools/pkg_install/Makefile index 05e803122ed..66bf044a118 100644 --- a/pkgtools/pkg_install/Makefile +++ b/pkgtools/pkg_install/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.126 2006/06/09 16:12:08 jlam Exp $ +# $NetBSD: Makefile,v 1.127 2006/06/13 13:57:10 jlam Exp $ # Notes to package maintainers: # @@ -95,7 +95,7 @@ do-extract: # XXX This should probably be the default order for all packages. update: ${MAKE} - ${MAKE} deinstall UPDATE_RUNNING=YES + ${MAKE} deinstall _UPDATE_RUNNING=YES ${MAKE} ${UPDATE_TARGET} ${MAKE} clean |