pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/misc/gok replace non-portable 'echo -n' utilisation wi...
details: https://anonhg.NetBSD.org/pkgsrc/rev/8774610aab77
branches: trunk
changeset: 625938:8774610aab77
user: richard <richard%pkgsrc.org@localhost>
date: Mon Oct 28 06:37:17 2013 +0000
description:
replace non-portable 'echo -n' utilisation with simple 'awk' statement
diffstat:
misc/gok/distinfo | 3 ++-
misc/gok/patches/patch-configure | 16 ++++++++++++++++
2 files changed, 18 insertions(+), 1 deletions(-)
diffs (31 lines):
diff -r d9916cc27b15 -r 8774610aab77 misc/gok/distinfo
--- a/misc/gok/distinfo Mon Oct 28 04:17:27 2013 +0000
+++ b/misc/gok/distinfo Mon Oct 28 06:37:17 2013 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.24 2009/11/17 16:54:31 wiz Exp $
+$NetBSD: distinfo,v 1.25 2013/10/28 06:37:17 richard Exp $
SHA1 (gok-2.28.1.tar.bz2) = 194080d2c4993061af3abd48d3a2a14393cef1c4
RMD160 (gok-2.28.1.tar.bz2) = d4cf9a2a10e1c0fb87d70f161e1fa3ee39f71c9b
Size (gok-2.28.1.tar.bz2) = 1588038 bytes
+SHA1 (patch-configure) = bf4f2b704005a43da0c32223394fd046bf50e216
diff -r d9916cc27b15 -r 8774610aab77 misc/gok/patches/patch-configure
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/misc/gok/patches/patch-configure Mon Oct 28 06:37:17 2013 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-configure,v 1.1 2013/10/28 06:37:17 richard Exp $
+
+* fix non-portable 'echo -n' utilisation by replacing statement
+* with simple 'awk' invocation.
+
+--- configure.orig 2009-10-19 16:02:17.000000000 +0000
++++ configure
+@@ -13740,7 +13740,7 @@ LIBBONOBO_IDL_DIR="`$PKG_CONFIG --variab
+
+
+
+-LANGDIRS="`$GREP -v "^\#" po/LINGUAS | while read line; do echo -n "$line/ "; done `"
++LANGDIRS="`$AWK 'BEGIN{ORS="/ "} /^\#/ {next} {print}' po/LINGUAS`"
+
+
+
Home |
Main Index |
Thread Index |
Old Index