summaryrefslogtreecommitdiff
path: root/devel/gdbada
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2006-10-22 07:55:38 +0000
committerrillig <rillig@pkgsrc.org>2006-10-22 07:55:38 +0000
commitedc90a10314485aa0aed64879c7a72aa126ebd56 (patch)
tree3c528a4ded9ebacd4c0f1b4da3b6d66ef9fe4392 /devel/gdbada
parentb70dacabdcd437f335e7200eb0eacd195eb34806 (diff)
downloadpkgsrc-edc90a10314485aa0aed64879c7a72aa126ebd56.tar.gz
Fixed "test ==".
Diffstat (limited to 'devel/gdbada')
-rw-r--r--devel/gdbada/distinfo3
-rw-r--r--devel/gdbada/patches/patch-bb13
2 files changed, 15 insertions, 1 deletions
diff --git a/devel/gdbada/distinfo b/devel/gdbada/distinfo
index 9b6269ef502..982edc35c85 100644
--- a/devel/gdbada/distinfo
+++ b/devel/gdbada/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.7 2005/11/13 14:45:13 shannonjr Exp $
+$NetBSD: distinfo,v 1.8 2006/10/22 07:59:55 rillig Exp $
SHA1 (gdbada-6.3.tgz) = ac174c32d23c628521142f92b83c30a4a40b450b
RMD160 (gdbada-6.3.tgz) = fb3cb09d29ce8c7c805737c7e9af9ccd5918773d
@@ -28,3 +28,4 @@ SHA1 (patch-aw) = 44a28f2cb4b395442ba140269833dff87b83d821
SHA1 (patch-ax) = 208ce114735cb39a422ef40edd739ab47ae68baf
SHA1 (patch-ay) = e5b353114a4a71df83e562d42a62e24ac6ea79b6
SHA1 (patch-ba) = f351ea2c3d665934a4b85735f71663bda0f921a5
+SHA1 (patch-bb) = 70d5344dce0f8d957d59ef32eee0f16f8f4d51e4
diff --git a/devel/gdbada/patches/patch-bb b/devel/gdbada/patches/patch-bb
new file mode 100644
index 00000000000..673d6c3a536
--- /dev/null
+++ b/devel/gdbada/patches/patch-bb
@@ -0,0 +1,13 @@
+$NetBSD: patch-bb,v 1.1 2006/10/22 07:59:55 rillig Exp $
+
+--- gdb/config/djgpp/djconfig.sh.orig 2004-10-21 01:12:57.000000000 +0200
++++ gdb/config/djgpp/djconfig.sh 2006-10-22 09:59:05.000000000 +0200
+@@ -89,7 +89,7 @@ TMPFILE="${TMPDIR-.}/cfg.tmp"
+
+ # We need to skip the build directory if it is a subdirectory of $srcdir,
+ # otherwise we will have an infinite recursion on our hands...
+-if test "`pwd`" == "${srcdir}" ; then
++if test "`pwd`" = "${srcdir}" ; then
+ SKIPDIR=""
+ SKIPFILES=""
+ else