diff options
author | tron <tron@pkgsrc.org> | 2007-11-19 14:59:40 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2007-11-19 14:59:40 +0000 |
commit | 6daf841974e28dde398201d56df1d2b12271b37d (patch) | |
tree | eda7ae865f099034c3b194bfcf4f4bf297f2f574 /mk/flavor/pkg | |
parent | 401db04b3b03dfdae3ea03cd234a388301fb3c6b (diff) | |
download | pkgsrc-6daf841974e28dde398201d56df1d2b12271b37d.tar.gz |
Don't warn that the "check", "info" or "list' target will be removed.
They are still in use and not really hard to maintain.
Diffstat (limited to 'mk/flavor/pkg')
-rw-r--r-- | mk/flavor/pkg/utility.mk | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/mk/flavor/pkg/utility.mk b/mk/flavor/pkg/utility.mk index f21337f52c3..37ae16c2a97 100644 --- a/mk/flavor/pkg/utility.mk +++ b/mk/flavor/pkg/utility.mk @@ -1,26 +1,26 @@ -# $NetBSD: utility.mk,v 1.8 2007/11/10 23:44:01 rillig Exp $ - -###################################################################### -### -### The targets below should probably be removed from pkgsrc. -### -###################################################################### +# $NetBSD: utility.mk,v 1.9 2007/11/19 14:59:40 tron Exp $ # The 'info' target can be used to display information about a package. .PHONY: info -info: _about-to-be-removed +info: ${_PKG_SILENT}${_PKG_DEBUG}${PKG_INFO} "${PKGWILDCARD}" # The 'check' target can be used to check an installed package. .PHONY: check -check: _about-to-be-removed +check: ${_PKG_SILENT}${_PKG_DEBUG}${PKG_ADMIN} check "${PKGWILDCARD}" # The 'list' target can be used to list the files installed by a package. .PHONY: list -list: _about-to-be-removed +list: ${_PKG_SILENT}${_PKG_DEBUG}${PKG_INFO} -L "${PKGWILDCARD}" +###################################################################### +### +### The targets below should probably be removed from pkgsrc. +### +###################################################################### + # show-downlevel: # Lists the packages whose installed version does not match the # current version in pkgsrc. |