summaryrefslogtreecommitdiff
path: root/devel/gdb
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/gdb
parentb70dacabdcd437f335e7200eb0eacd195eb34806 (diff)
downloadpkgsrc-edc90a10314485aa0aed64879c7a72aa126ebd56.tar.gz
Fixed "test ==".
Diffstat (limited to 'devel/gdb')
-rw-r--r--devel/gdb/distinfo3
-rw-r--r--devel/gdb/patches/patch-ao13
2 files changed, 15 insertions, 1 deletions
diff --git a/devel/gdb/distinfo b/devel/gdb/distinfo
index f27b94d2580..839421d91f3 100644
--- a/devel/gdb/distinfo
+++ b/devel/gdb/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.7 2006/02/27 15:45:29 joerg Exp $
+$NetBSD: distinfo,v 1.8 2006/10/22 07:55:38 rillig Exp $
SHA1 (gdb-5.3.tar.gz) = 24a6c9da6e89b1b82b7508f27f94098d989ff662
RMD160 (gdb-5.3.tar.gz) = 3f88dc11115de08708c50c73b10acaf00ed25e96
@@ -17,3 +17,4 @@ SHA1 (patch-ak) = 0908ff7f7000df702a18c25bce4b4930c61ad8f8
SHA1 (patch-al) = 2721abee837d85f57b05073490d94e9e11d5193d
SHA1 (patch-am) = 8bb74176c2e7042a74330a02d60a1976919da2a0
SHA1 (patch-an) = c28777296917daa1a619eca092023c8f5aaf706f
+SHA1 (patch-ao) = 7a38b55945cf6d9fc422e460d67b88a1e4416e62
diff --git a/devel/gdb/patches/patch-ao b/devel/gdb/patches/patch-ao
new file mode 100644
index 00000000000..f1e360eeb3c
--- /dev/null
+++ b/devel/gdb/patches/patch-ao
@@ -0,0 +1,13 @@
+$NetBSD: patch-ao,v 1.1 2006/10/22 07:55:38 rillig Exp $
+
+--- gdb/config/djgpp/djconfig.sh.orig 2002-02-25 17:09:45.000000000 +0100
++++ gdb/config/djgpp/djconfig.sh 2006-10-22 09:54:26.000000000 +0200
+@@ -76,7 +76,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