diff options
author | jklos <jklos@pkgsrc.org> | 2005-01-22 01:03:45 +0000 |
---|---|---|
committer | jklos <jklos@pkgsrc.org> | 2005-01-22 01:03:45 +0000 |
commit | 4e8025127a67d6d5ec0adac1425ecadc13eff31f (patch) | |
tree | 17609ade1121e1c77250061e22c1a92319fdf52a /pkgtools | |
parent | a98b825cae632911bf8adf3c8b05ac1eff5d1982 (diff) | |
download | pkgsrc-4e8025127a67d6d5ec0adac1425ecadc13eff31f.tar.gz |
The "make update" target did not clean up after itself, which has caused
problems when people run "make update" without checking to see if anything
old was still around. "make update" now cleans after installing.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgtools/pkg_install/Makefile b/pkgtools/pkg_install/Makefile index 741717b317b..5c175eb5c53 100644 --- a/pkgtools/pkg_install/Makefile +++ b/pkgtools/pkg_install/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.107 2005/01/06 05:32:29 tv Exp $ +# $NetBSD: Makefile,v 1.108 2005/01/22 01:03:45 jklos Exp $ # Notes to package maintainers: # @@ -78,6 +78,7 @@ update: ${MAKE} ${MAKE} deinstall UPDATE_RUNNING=YES ${MAKE} install + ${MAKE} clean .include "../../pkgtools/libnbcompat/inplace.mk" .include "../../mk/bsd.pkg.mk" |