diff options
author | rillig <rillig> | 2006-10-22 20:27:22 +0000 |
---|---|---|
committer | rillig <rillig> | 2006-10-22 20:27:22 +0000 |
commit | b2f8ad71d3a316ac5916453cbc97041787a16e9f (patch) | |
tree | ac38c66f6500a4966c88cd48fbb8f9fb51ebee67 /lang/mercury | |
parent | cc5dc3048045ac0eb5767457ffb2bf92c55099fb (diff) | |
download | pkgsrc-b2f8ad71d3a316ac5916453cbc97041787a16e9f.tar.gz |
Fixed "test ==".
Diffstat (limited to 'lang/mercury')
-rw-r--r-- | lang/mercury/distinfo | 4 | ||||
-rw-r--r-- | lang/mercury/patches/patch-an | 13 | ||||
-rw-r--r-- | lang/mercury/patches/patch-ao | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/lang/mercury/distinfo b/lang/mercury/distinfo index 7a8314148b7..af0b15d9399 100644 --- a/lang/mercury/distinfo +++ b/lang/mercury/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.8 2005/02/24 09:03:09 agc Exp $ +$NetBSD: distinfo,v 1.9 2006/10/22 20:29:49 rillig Exp $ SHA1 (mercury-compiler-0.11.0.tar.gz) = 17feadfa8e8783738fc18428c6ab59b61c1e8a73 RMD160 (mercury-compiler-0.11.0.tar.gz) = a29edbca8253e921fa5f7c17f605f71ec0a65b56 @@ -16,3 +16,5 @@ SHA1 (patch-aj) = fb0df25aeb55a1c466fa0def40b7096269ba8d6c SHA1 (patch-ak) = 20223ebfa573659d2217b6177bf2e2b523eb248d SHA1 (patch-al) = 5eb7f071049b163807f7a0c833eeecd941e7cbfb SHA1 (patch-am) = d0d3211c8d3e55beaba5a73b39f6bb3853e1602d +SHA1 (patch-an) = d581d673d677f88fc4a48319df3a6458e598499b +SHA1 (patch-ao) = c9b57f296e98cc860cdbcb0332abe2e979c2248b diff --git a/lang/mercury/patches/patch-an b/lang/mercury/patches/patch-an new file mode 100644 index 00000000000..3e6eee0f601 --- /dev/null +++ b/lang/mercury/patches/patch-an @@ -0,0 +1,13 @@ +$NetBSD: patch-an,v 1.1 2006/10/22 20:29:49 rillig Exp $ + +--- tools/backupdir.orig 2000-02-24 23:37:28.000000000 +0100 ++++ tools/backupdir 2006-10-22 22:27:51.000000000 +0200 +@@ -25,7 +25,7 @@ do + revisions=$pwd/$subdir-$date.revisions.gz + + # If there is no backup, make one +- if [ z"$olddiff" == z ] ; then ++ if [ z"$olddiff" = z ] ; then + echo "No backup for $dir/$subdir, making one" + (cd $dir/$subdir; cvs diff -u -N . 2> /dev/null | + gzip -9 > $diff) diff --git a/lang/mercury/patches/patch-ao b/lang/mercury/patches/patch-ao new file mode 100644 index 00000000000..cdd21e63da2 --- /dev/null +++ b/lang/mercury/patches/patch-ao @@ -0,0 +1,13 @@ +$NetBSD: patch-ao,v 1.1 2006/10/22 20:29:49 rillig Exp $ + +--- tools/cvdr.orig 2001-04-18 19:32:24.000000000 +0200 ++++ tools/cvdr 2006-10-22 22:28:06.000000000 +0200 +@@ -62,7 +62,7 @@ done + # CVS/Repository. Most recent versions of CVS/Repository + # don't include the repository anyway, and so if it isn't set we + # ignore it. +-if [ "$CVSROOT" == "" ] ; then ++if [ "$CVSROOT" = "" ] ; then + FULLFILE=`cat CVS/Repository`/$file + else + FULLFILE=`sed "s^$CVSROOT/^^" CVS/Repository`/"$file" |