diff options
author | dillo <dillo@pkgsrc.org> | 2006-07-01 19:37:25 +0000 |
---|---|---|
committer | dillo <dillo@pkgsrc.org> | 2006-07-01 19:37:25 +0000 |
commit | 75edd97011c5d68ed3f046968c23fd0b0a39dc56 (patch) | |
tree | 4dee18154790f2870648531f9f53f657c5a74a70 /pkgtools/pkg_install | |
parent | fc33f57303d86225345ca19e5eb10cbca2a2c6f7 (diff) | |
download | pkgsrc-75edd97011c5d68ed3f046968c23fd0b0a39dc56.tar.gz |
Pull across from source:
Fix pkg_info -Q on binary packages; noted by rillig.
Bump version to 20060701.
Okayed during freeze by wiz.
Diffstat (limited to 'pkgtools/pkg_install')
-rw-r--r-- | pkgtools/pkg_install/files/info/perform.c | 6 | ||||
-rw-r--r-- | pkgtools/pkg_install/files/lib/version.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgtools/pkg_install/files/info/perform.c b/pkgtools/pkg_install/files/info/perform.c index 6d394662658..6fbb320bf2e 100644 --- a/pkgtools/pkg_install/files/info/perform.c +++ b/pkgtools/pkg_install/files/info/perform.c @@ -1,4 +1,4 @@ -/* $NetBSD: perform.c,v 1.28 2006/04/24 13:52:05 dillo Exp $ */ +/* $NetBSD: perform.c,v 1.29 2006/07/01 19:37:25 dillo Exp $ */ #if HAVE_CONFIG_H #include "config.h" @@ -14,7 +14,7 @@ #if 0 static const char *rcsid = "from FreeBSD Id: perform.c,v 1.23 1997/10/13 15:03:53 jkh Exp"; #else -__RCSID("$NetBSD: perform.c,v 1.28 2006/04/24 13:52:05 dillo Exp $"); +__RCSID("$NetBSD: perform.c,v 1.29 2006/07/01 19:37:25 dillo Exp $"); #endif #endif @@ -135,7 +135,7 @@ pkg_do(char *pkg) LFILE_ADD(&files, lfp, MTREE_FNAME); if (Flags & SHOW_BUILD_VERSION) LFILE_ADD(&files, lfp, BUILD_VERSION_FNAME); - if (Flags & (SHOW_BUILD_INFO|SHOW_SUMMARY)) + if (Flags & (SHOW_BUILD_INFO|SHOW_SUMMARY|SHOW_BI_VAR)) LFILE_ADD(&files, lfp, BUILD_INFO_FNAME); if (Flags & (SHOW_PKG_SIZE|SHOW_SUMMARY)) LFILE_ADD(&files, lfp, SIZE_PKG_FNAME); diff --git a/pkgtools/pkg_install/files/lib/version.h b/pkgtools/pkg_install/files/lib/version.h index 784a75cbc03..82e1a24b16c 100644 --- a/pkgtools/pkg_install/files/lib/version.h +++ b/pkgtools/pkg_install/files/lib/version.h @@ -1,4 +1,4 @@ -/* $NetBSD: version.h,v 1.59 2006/04/24 13:52:05 dillo Exp $ */ +/* $NetBSD: version.h,v 1.60 2006/07/01 19:37:25 dillo Exp $ */ /* * Copyright (c) 2001 Thomas Klausner. All rights reserved. @@ -33,6 +33,6 @@ #ifndef _INST_LIB_VERSION_H_ #define _INST_LIB_VERSION_H_ -#define PKGTOOLS_VERSION "20060424" +#define PKGTOOLS_VERSION "20060701" #endif /* _INST_LIB_VERSION_H_ */ |