diff options
author | markd <markd> | 2006-10-15 11:25:19 +0000 |
---|---|---|
committer | markd <markd> | 2006-10-15 11:25:19 +0000 |
commit | c1a2bbd949e3889bb194ef843566e6528e71245b (patch) | |
tree | dee51c71ce07c3b9f9ee0c5a87dc11481f3544a5 /x11/kdelibs3/patches | |
parent | b8efe32dbb5be931e0013ae0682236b50d42de28 (diff) | |
download | pkgsrc-c1a2bbd949e3889bb194ef843566e6528e71245b.tar.gz |
Make check-portability.sh happy. kate/tests/highlight.sh is not
runnable but fix the "test ==" anyway.
Diffstat (limited to 'x11/kdelibs3/patches')
-rw-r--r-- | x11/kdelibs3/patches/patch-at | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/x11/kdelibs3/patches/patch-at b/x11/kdelibs3/patches/patch-at new file mode 100644 index 00000000000..6c52fc3a48a --- /dev/null +++ b/x11/kdelibs3/patches/patch-at @@ -0,0 +1,16 @@ +$NetBSD: patch-at,v 1.6 2006/10/15 11:25:19 markd Exp $ + +--- kate/tests/highlight.sh.orig 2006-10-16 00:04:26.000000000 +1300 ++++ kate/tests/highlight.sh +@@ -159,9 +159,9 @@ make destdir=/usr/ + + # [[ and [ correctly need spaces to be regarded as structure, + # otherwise they are patterns (currently treated as normal text) +-if [ "$p" == "" ] ; then ++if [ "$p" = "" ] ; then + ls /usr/bin/[a-z]* +-elif [[ $p == 0 ]] ; then ++elif [[ $p = 0 ]] ; then + ls /usr/share/$p + fi + |