svn commit: r317720 - head/devel/liblangtag/files
Jung-uk Kim
jkim at FreeBSD.org
Wed May 8 23:14:42 UTC 2013
Author: jkim
Date: Wed May 8 23:14:40 2013
New Revision: 317720
URL: http://svnweb.freebsd.org/changeset/ports/317720
Log:
Remove a redundant pair of braces.
Modified:
head/devel/liblangtag/files/patch-liblangtag__buildaliastbl.sh
Modified: head/devel/liblangtag/files/patch-liblangtag__buildaliastbl.sh
==============================================================================
--- head/devel/liblangtag/files/patch-liblangtag__buildaliastbl.sh Wed May 8 23:02:33 2013 (r317719)
+++ head/devel/liblangtag/files/patch-liblangtag__buildaliastbl.sh Wed May 8 23:14:40 2013 (r317720)
@@ -5,7 +5,7 @@
EOF
-iconv -f iso8859-1 -t utf-8 $1 | sed -e '/^#.*/{d};/^$/{d};' -e 's/^\([^ \t]*\)[ \t]*\([^ \t]*\)$/\t{"\1", "\2"},/'
-+iconv -f iso8859-1 -t utf-8 $1 | awk '{ if ($0 !~ /^(#.*)?$/) { printf("\t{\"%s\", \"%s\"},\n", $1, $2); } }'
++iconv -f iso8859-1 -t utf-8 $1 | awk '{ if ($0 !~ /^(#.*)?$/) printf("\t{\"%s\", \"%s\"},\n", $1, $2); }'
cat<<EOF
{NULL, NULL}
More information about the svn-ports-all
mailing list