pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/emulators/darwin_lib Fixed pkglint warnings. Also fixe...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0c4dc96fe028
branches:  trunk
changeset: 515388:0c4dc96fe028
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Sun Jul 02 10:05:55 2006 +0000

description:
Fixed pkglint warnings. Also fixed a sed expression that used /+ to mean
"one or more slashes". The + operator is not contained in POSIX basic
regular expressions.

diffstat:

 emulators/darwin_lib/MESSAGE  |  6 +++---
 emulators/darwin_lib/Makefile |  4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diffs (32 lines):

diff -r e7a9ee9b794e -r 0c4dc96fe028 emulators/darwin_lib/MESSAGE
--- a/emulators/darwin_lib/MESSAGE      Sun Jul 02 10:03:14 2006 +0000
+++ b/emulators/darwin_lib/MESSAGE      Sun Jul 02 10:05:55 2006 +0000
@@ -1,7 +1,7 @@
-==============================================================================
-$NetBSD: MESSAGE,v 1.1 2006/06/23 15:52:34 jlam Exp $
+===========================================================================
+$NetBSD: MESSAGE,v 1.2 2006/07/02 10:05:55 rillig Exp $
 
 Do not forget to include EXEC_MACHO, COMPAT_MACH, and COMPAT_DARWIN
 in your kernel configuration file.  Darwin binaries require these
 options in order to work.
-==============================================================================
+===========================================================================
diff -r e7a9ee9b794e -r 0c4dc96fe028 emulators/darwin_lib/Makefile
--- a/emulators/darwin_lib/Makefile     Sun Jul 02 10:03:14 2006 +0000
+++ b/emulators/darwin_lib/Makefile     Sun Jul 02 10:05:55 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2006/06/23 15:52:34 jlam Exp $
+# $NetBSD: Makefile,v 1.7 2006/07/02 10:05:55 rillig Exp $
 
 DISTNAME=      darwin_lib-6.6.2
 PKGREVISION=   2
@@ -39,7 +39,7 @@
 do-install:
        ${RM} -f ${WRKDIR}/PLIST_RPM2PKG
        ${RPM2PKG} ${RPMARGS}
-       ${SED} -e "s|^\./||" -e "s|/\./|/|g" -e "s|/+|/|g"              \
+       ${SED} -e 's|^\./||' -e 's|/\./|/|g' -e 's|//*|/|g'             \
                ${WRKDIR}/PLIST_RPM2PKG > ${PLIST_SRC}
 
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index