summaryrefslogtreecommitdiff
path: root/pkgtools/pkg_install
diff options
context:
space:
mode:
authoragc <agc>2015-05-08 16:29:37 +0000
committeragc <agc>2015-05-08 16:29:37 +0000
commit11b6897854c7c5efff8556ca50026143c0043f2e (patch)
tree9960380d71ea8409266c33075222edda46ae57c4 /pkgtools/pkg_install
parent719da3dcaf28a302e37f2fc031b6872c259c550d (diff)
downloadpkgsrc-11b6897854c7c5efff8556ca50026143c0043f2e.tar.gz
Fix format string in pkg_add's help message - from J. Lewis Muir
Bump version number for pkg_install to 20150508
Diffstat (limited to 'pkgtools/pkg_install')
-rw-r--r--pkgtools/pkg_install/files/add/main.c8
-rw-r--r--pkgtools/pkg_install/files/lib/version.h4
2 files changed, 6 insertions, 6 deletions
diff --git a/pkgtools/pkg_install/files/add/main.c b/pkgtools/pkg_install/files/add/main.c
index fd003382366..42a1abba380 100644
--- a/pkgtools/pkg_install/files/add/main.c
+++ b/pkgtools/pkg_install/files/add/main.c
@@ -1,4 +1,4 @@
-/* $NetBSD: main.c,v 1.28 2014/12/30 15:13:20 wiz Exp $ */
+/* $NetBSD: main.c,v 1.29 2015/05/08 16:29:37 agc Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
@@ -7,7 +7,7 @@
#if HAVE_SYS_CDEFS_H
#include <sys/cdefs.h>
#endif
-__RCSID("$NetBSD: main.c,v 1.28 2014/12/30 15:13:20 wiz Exp $");
+__RCSID("$NetBSD: main.c,v 1.29 2015/05/08 16:29:37 agc Exp $");
/*
*
@@ -62,9 +62,9 @@ int ReplaceSame = 0;
static void
usage(void)
{
- (void) fprintf(stderr, "%s\n%s\n%s\n%s\n",
+ (void) fprintf(stderr, "%s\n%s\n%s\n",
"usage: pkg_add [-AfhInRuVv] [-C config] [-P destdir] [-K pkg_dbdir]",
- " [-m machine] [-p prefix] [-s verification-type]\n",
+ " [-m machine] [-p prefix] [-s verification-type]",
" [[ftp|http]://[user[:password]@]host[:port]][/path/]pkg-name ...");
exit(1);
}
diff --git a/pkgtools/pkg_install/files/lib/version.h b/pkgtools/pkg_install/files/lib/version.h
index 15d2d4df3ac..fd401a0890e 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.167 2014/12/30 15:13:21 wiz Exp $ */
+/* $NetBSD: version.h,v 1.168 2015/05/08 16:29:37 agc Exp $ */
/*
* Copyright (c) 2001 Thomas Klausner. All rights reserved.
@@ -27,6 +27,6 @@
#ifndef _INST_LIB_VERSION_H_
#define _INST_LIB_VERSION_H_
-#define PKGTOOLS_VERSION 20141227
+#define PKGTOOLS_VERSION 20150508
#endif /* _INST_LIB_VERSION_H_ */