pkgtools

morpheus pkg tools
git clone git://git.2f30.org/pkgtools
Log | Files | Refs | README | LICENSE

commit f97dbf2a8304b0702b7e4539a6cc20f7316351d5
parent d07450487d819af7eeb1eef758d4877e29503e8c
Author: sin <sin@2f30.org>
Date:   Tue, 17 Jun 2014 15:00:23 +0100

The -O switch comes at the end

Diffstat:
Minfopkg.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/infopkg.c b/infopkg.c @@ -15,9 +15,9 @@ static int ownpkg(struct db *, struct pkg *, void *); static void usage(void) { - fprintf(stderr, "usage: %s [-O filename...] [-p prefix]\n", argv0); - fprintf(stderr, " -O Look for the package that owns the given filename(s)\n"); + fprintf(stderr, "usage: %s [-p prefix] [-O filename...]\n", argv0); fprintf(stderr, " -p Set the installation prefix\n"); + fprintf(stderr, " -O Look for the packages that own the given filename(s)\n"); exit(1); }