pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/pkgtools/cwrappers cwrappers-20170112: Fix typos. From...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/376f64d6d597
branches:  trunk
changeset: 357091:376f64d6d597
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Thu Jan 12 14:56:35 2017 +0000

description:
cwrappers-20170112: Fix typos. From jperkin.

diffstat:

 pkgtools/cwrappers/Makefile                 |  4 ++--
 pkgtools/cwrappers/files/bin/base-wrapper.c |  8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diffs (47 lines):

diff -r 5b25dbd3c89f -r 376f64d6d597 pkgtools/cwrappers/Makefile
--- a/pkgtools/cwrappers/Makefile       Thu Jan 12 14:48:23 2017 +0000
+++ b/pkgtools/cwrappers/Makefile       Thu Jan 12 14:56:35 2017 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.18 2016/11/27 11:46:45 joerg Exp $
+# $NetBSD: Makefile,v 1.19 2017/01/12 14:56:35 joerg Exp $
 
-PKGNAME=               cwrappers-20161125
+PKGNAME=               cwrappers-20170112
 CATEGORIES=            pkgtools sysutils
 
 MAINTAINER=            joerg%NetBSD.org@localhost
diff -r 5b25dbd3c89f -r 376f64d6d597 pkgtools/cwrappers/files/bin/base-wrapper.c
--- a/pkgtools/cwrappers/files/bin/base-wrapper.c       Thu Jan 12 14:48:23 2017 +0000
+++ b/pkgtools/cwrappers/files/bin/base-wrapper.c       Thu Jan 12 14:56:35 2017 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: base-wrapper.c,v 1.3 2016/11/27 11:46:45 joerg Exp $ */
+/* $NetBSD: base-wrapper.c,v 1.4 2017/01/12 14:56:35 joerg Exp $ */
 
 /*-
  * Copyright (c) 2007 Joerg Sonnenberger <joerg%NetBSD.org@localhost>.
@@ -71,7 +71,7 @@
                if (strcmp(arg->val, "--mode") == 0) {
                        arg = TAILQ_NEXT(arg, link);
                        if (arg == NULL || *arg->val == '-')
-                               errx(255, "Misssing --mode argument");
+                               errx(255, "Missing --mode argument");
                        mode = arg->val;
                        continue;
                }
@@ -82,14 +82,14 @@
                if (strcmp(arg->val, "--tag") == 0) {
                        arg = TAILQ_NEXT(arg, link);
                        if (arg == NULL || *arg->val == '-')
-                               errx(255, "Misssing --tag argument");
+                               errx(255, "Missing --tag argument");
                        continue;
                }
        }
        if (arg == NULL)
                return 1;
        if (mode == NULL)
-               errx(255, "Misssing --mode=XXX");
+               errx(255, "Missing --mode=XXX");
        
        if (strcmp(mode, "compile") == 0 ||
            strcmp(mode, "link") == 0)



Home | Main Index | Thread Index | Old Index