summaryrefslogtreecommitdiff
path: root/x11/gnome-themes/patches/patch-aa
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2008-11-08 18:20:27 +0000
committerwiz <wiz@pkgsrc.org>2008-11-08 18:20:27 +0000
commit7be820175714dc808c721d89d3eb75afd1ed3b26 (patch)
tree66b50c97d9178a9ab7000d8f09ceb1d56e1727dc /x11/gnome-themes/patches/patch-aa
parent79af2eb308335baf2f7fb71f8ca36b8e181f3547 (diff)
downloadpkgsrc-7be820175714dc808c721d89d3eb75afd1ed3b26.tar.gz
Only one equal sign in test(1) constructs.
Diffstat (limited to 'x11/gnome-themes/patches/patch-aa')
-rw-r--r--x11/gnome-themes/patches/patch-aa4
1 files changed, 2 insertions, 2 deletions
diff --git a/x11/gnome-themes/patches/patch-aa b/x11/gnome-themes/patches/patch-aa
index e95c1a6f562..ba8b28038c5 100644
--- a/x11/gnome-themes/patches/patch-aa
+++ b/x11/gnome-themes/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.3 2008/10/27 13:30:13 wiz Exp $
+$NetBSD: patch-aa,v 1.4 2008/11/08 18:20:27 wiz Exp $
--- common/mkiconlinks.sh.orig 2008-09-22 15:09:10.000000000 +0000
+++ common/mkiconlinks.sh
@@ -7,7 +7,7 @@ $NetBSD: patch-aa,v 1.3 2008/10/27 13:30:13 wiz Exp $
# Skip lines beginning with '#'
- if [ ! "${NEXTLINE:0:1}" == '#' ]; then
-+ if [ ! X"`echo ${NEXTLINE} | head -c 1`" == X'#' ]; then
++ if [ ! X"`echo ${NEXTLINE} | head -c 1`" = X'#' ]; then
#Extract first field, minus its trailing colon
ORIG_FILE=`echo $NEXTLINE | awk '/:/{print $1}' | sed -e 's/://'`