diff options
author | wiz <wiz@pkgsrc.org> | 2011-06-03 00:22:19 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2011-06-03 00:22:19 +0000 |
commit | 3526c580a25d4f0f795e15023c8c31a381bdd668 (patch) | |
tree | 81afffa9994f857d7bb506c1eb7f2aa522475133 /net/filezilla | |
parent | 907ce2768dda569bb1534fde4e64a3e93685a72f (diff) | |
download | pkgsrc-3526c580a25d4f0f795e15023c8c31a381bdd668.tar.gz |
Fix unportable test(1) construct.
Diffstat (limited to 'net/filezilla')
-rw-r--r-- | net/filezilla/distinfo | 3 | ||||
-rw-r--r-- | net/filezilla/patches/patch-data_makezip.sh.in | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/net/filezilla/distinfo b/net/filezilla/distinfo index 87f73ec2bee..c1d1c7c81e7 100644 --- a/net/filezilla/distinfo +++ b/net/filezilla/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.14 2011/05/23 20:03:35 zafer Exp $ +$NetBSD: distinfo,v 1.15 2011/06/03 00:22:19 wiz Exp $ SHA1 (FileZilla_3.5.0_src.tar.bz2) = 0d351b74bbe70cbfea1d315fd07193089e6e1c9d RMD160 (FileZilla_3.5.0_src.tar.bz2) = c3ffc60ced15b7055c34d6ef07c97f516e6f276d Size (FileZilla_3.5.0_src.tar.bz2) = 3348649 bytes +SHA1 (patch-data_makezip.sh.in) = 80acc96fce08e2e0831a4da0613f7b2eaebad465 diff --git a/net/filezilla/patches/patch-data_makezip.sh.in b/net/filezilla/patches/patch-data_makezip.sh.in new file mode 100644 index 00000000000..570cfa8f411 --- /dev/null +++ b/net/filezilla/patches/patch-data_makezip.sh.in @@ -0,0 +1,15 @@ +$NetBSD: patch-data_makezip.sh.in,v 1.1 2011/06/03 00:22:19 wiz Exp $ + +Fix unportable test(1) construct. + +--- data/makezip.sh.in.orig 2011-05-21 03:30:16.000000000 +0000 ++++ data/makezip.sh.in +@@ -34,7 +34,7 @@ copy_libtool() + { + local target + +- if [ "$3" == "" ]; then ++ if [ "$3" = "" ]; then + target="$2" + else + target="$3" |