summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorrichard <richard@pkgsrc.org>2013-10-28 14:21:27 +0000
committerrichard <richard@pkgsrc.org>2013-10-28 14:21:27 +0000
commita97643256f01a39efbe6ec92cb57e9329435e719 (patch)
treee16472ff47879b3a5b5f9f541ed4127420f0696d /misc
parent5fd2ee1651b6bd8d047fe389bdfb72240f1fd309 (diff)
downloadpkgsrc-a97643256f01a39efbe6ec92cb57e9329435e719.tar.gz
use GNU configure's as_echo_n instead (courtesy of obache)
Diffstat (limited to 'misc')
-rw-r--r--misc/gok/distinfo4
-rw-r--r--misc/gok/patches/patch-configure8
2 files changed, 6 insertions, 6 deletions
diff --git a/misc/gok/distinfo b/misc/gok/distinfo
index 740212ecc2e..33094bfa714 100644
--- a/misc/gok/distinfo
+++ b/misc/gok/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.25 2013/10/28 06:37:17 richard Exp $
+$NetBSD: distinfo,v 1.26 2013/10/28 14:21:27 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
+SHA1 (patch-configure) = 5a0e168841eff54791375fe9d8ec6a743244694f
diff --git a/misc/gok/patches/patch-configure b/misc/gok/patches/patch-configure
index 65bd3617527..1f9aad5b54b 100644
--- a/misc/gok/patches/patch-configure
+++ b/misc/gok/patches/patch-configure
@@ -1,7 +1,7 @@
-$NetBSD: patch-configure,v 1.1 2013/10/28 06:37:17 richard Exp $
+$NetBSD: patch-configure,v 1.2 2013/10/28 14:21:27 richard Exp $
-* fix non-portable 'echo -n' utilisation by replacing statement
-* with simple 'awk' invocation.
+* fix non-portable 'echo -n' utilisation by using GNU configure's
+* `as_echo_n' command.
--- configure.orig 2009-10-19 16:02:17.000000000 +0000
+++ configure
@@ -10,7 +10,7 @@ $NetBSD: patch-configure,v 1.1 2013/10/28 06:37:17 richard Exp $
-LANGDIRS="`$GREP -v "^\#" po/LINGUAS | while read line; do echo -n "$line/ "; done `"
-+LANGDIRS="`$AWK 'BEGIN{ORS="/ "} /^\#/ {next} {print}' po/LINGUAS`"
++LANGDIRS="`$GREP -v "^\#" po/LINGUAS | while read line; do $as_echo_n "$line/ "; done `"