diff options
author | hubertf <hubertf@pkgsrc.org> | 2004-01-06 15:53:41 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2004-01-06 15:53:41 +0000 |
commit | ee6d9927f06bb4e4a446356af3359fd270b9c652 (patch) | |
tree | 791b54716bb93860dddfbbe767f2951fef445591 /pkgtools | |
parent | a5e26b7db2434e712831bf726db92bcde1bb7aed (diff) | |
download | pkgsrc-ee6d9927f06bb4e4a446356af3359fd270b9c652.tar.gz |
pkg_install now prints post-install message by default, if available.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/files/info/main.c | 7 | ||||
-rw-r--r-- | pkgtools/pkg_install/files/lib/version.h | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/pkgtools/pkg_install/files/info/main.c b/pkgtools/pkg_install/files/info/main.c index 9efe301467f..6fb9ce6be3f 100644 --- a/pkgtools/pkg_install/files/info/main.c +++ b/pkgtools/pkg_install/files/info/main.c @@ -1,4 +1,4 @@ -/* $NetBSD: main.c,v 1.6 2003/09/23 07:13:51 grant Exp $ */ +/* $NetBSD: main.c,v 1.7 2004/01/06 15:53:41 hubertf Exp $ */ #if HAVE_CONFIG_H #include "config.h" @@ -11,7 +11,7 @@ #if 0 static char *rcsid = "from FreeBSD Id: main.c,v 1.14 1997/10/08 07:47:26 charnier Exp"; #else -__RCSID("$NetBSD: main.c,v 1.6 2003/09/23 07:13:51 grant Exp $"); +__RCSID("$NetBSD: main.c,v 1.7 2004/01/06 15:53:41 hubertf Exp $"); #endif #endif @@ -217,7 +217,8 @@ main(int argc, char **argv) /* Set some reasonable defaults */ if (!Flags) - Flags = SHOW_COMMENT | SHOW_DESC | SHOW_REQBY | SHOW_DEPENDS; + Flags = SHOW_COMMENT | SHOW_DESC | SHOW_REQBY + | SHOW_DEPENDS | SHOW_DISPLAY; /* -Fe /filename -> change CheckPkg to real packagename */ if (CheckPkg && File2Pkg) { diff --git a/pkgtools/pkg_install/files/lib/version.h b/pkgtools/pkg_install/files/lib/version.h index 8e5d496bfe1..95604f88209 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.20 2004/01/04 01:49:38 hubertf Exp $ */ +/* $NetBSD: version.h,v 1.21 2004/01/06 15:53:41 hubertf 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 "20040104" +#define PKGTOOLS_VERSION "20040106" #endif /* _INST_LIB_VERSION_H_ */ |