summaryrefslogtreecommitdiff
path: root/emulators/darwin_lib
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2006-07-02 10:05:55 +0000
committerrillig <rillig@pkgsrc.org>2006-07-02 10:05:55 +0000
commit705c02d9069400c0920fd511c2b0d36f37880c5d (patch)
tree35c4b10140005322d61fb715b8beb6f63b0ef0e8 /emulators/darwin_lib
parent4f256be13ca72eb84573431686ef0757781dab81 (diff)
downloadpkgsrc-705c02d9069400c0920fd511c2b0d36f37880c5d.tar.gz
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 (limited to 'emulators/darwin_lib')
-rw-r--r--emulators/darwin_lib/MESSAGE6
-rw-r--r--emulators/darwin_lib/Makefile4
2 files changed, 5 insertions, 5 deletions
diff --git a/emulators/darwin_lib/MESSAGE b/emulators/darwin_lib/MESSAGE
index 3cd1f419dbc..0b980cfb286 100644
--- a/emulators/darwin_lib/MESSAGE
+++ b/emulators/darwin_lib/MESSAGE
@@ -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 --git a/emulators/darwin_lib/Makefile b/emulators/darwin_lib/Makefile
index 5116c38c289..b8db3b00bf0 100644
--- a/emulators/darwin_lib/Makefile
+++ b/emulators/darwin_lib/Makefile
@@ -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 @@ NO_BUILD= yes
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"