diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2020-02-17 13:06:46 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2020-02-17 13:06:46 +0000 |
commit | 247db8bbb367ec296b0968bd3002e7ac3db8231d (patch) | |
tree | a452a2b2e58c6dd1c761917138a6795fabc62d68 /usr.sbin/pkg_add/Makefile | |
parent | 37395b0bc7b94b164bbea1a08d904129615202a5 (diff) |
future replacement for PackageInfo.pm
- the name was a bit confusing (pkg_info)
- one of the first modules I wrote, and the old one isn't OO at all, and
full of globals, which can be a problem for displaying error messages, and
for tweaking PKG_DB locally...
This will replace PackageInfo.pm once I've gone through all the callers.
New synopsis would make this part of State in most cases, without any
singleton.
Diffstat (limited to 'usr.sbin/pkg_add/Makefile')
-rw-r--r-- | usr.sbin/pkg_add/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/pkg_add/Makefile b/usr.sbin/pkg_add/Makefile index 098f65cf4d9..bad167184fe 100644 --- a/usr.sbin/pkg_add/Makefile +++ b/usr.sbin/pkg_add/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.89 2020/01/04 13:48:49 schwarze Exp $ +# $OpenBSD: Makefile,v 1.90 2020/02/17 13:06:45 espie Exp $ .include <bsd.own.mk> @@ -24,6 +24,7 @@ PACKAGES= \ OpenBSD/Getopt.pm \ OpenBSD/Handle.pm \ OpenBSD/IdCache.pm \ + OpenBSD/InstalledInfo.pm \ OpenBSD/Interactive.pm \ OpenBSD/LibSpec.pm \ OpenBSD/LibSpec/Build.pm \ |