summaryrefslogtreecommitdiff
path: root/cross/avr-gdb
diff options
context:
space:
mode:
authorrillig <rillig>2006-10-13 18:25:59 +0000
committerrillig <rillig>2006-10-13 18:25:59 +0000
commit2e032ed53b0425878677ae1b702e10d95ec3b5c0 (patch)
treec9b64aa8484e97af095288d279c572369bd71b59 /cross/avr-gdb
parentb35341e3a1514cb4c86223883a6301b63c629415 (diff)
downloadpkgsrc-2e032ed53b0425878677ae1b702e10d95ec3b5c0.tar.gz
Fixed "test ==".
Diffstat (limited to 'cross/avr-gdb')
-rw-r--r--cross/avr-gdb/distinfo3
-rw-r--r--cross/avr-gdb/patches/patch-ac13
2 files changed, 15 insertions, 1 deletions
diff --git a/cross/avr-gdb/distinfo b/cross/avr-gdb/distinfo
index f7c26463b28..94be6acb672 100644
--- a/cross/avr-gdb/distinfo
+++ b/cross/avr-gdb/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.7 2005/12/19 15:23:29 joerg Exp $
+$NetBSD: distinfo,v 1.8 2006/10/13 18:25:59 rillig Exp $
SHA1 (gdb-5.3.tar.gz) = 24a6c9da6e89b1b82b7508f27f94098d989ff662
RMD160 (gdb-5.3.tar.gz) = 3f88dc11115de08708c50c73b10acaf00ed25e96
Size (gdb-5.3.tar.gz) = 14707600 bytes
SHA1 (patch-aa) = 3b2c3c8bbacbf87d9756ef282e4a37c930fcb4af
SHA1 (patch-ab) = 005c0ca2aea16927504e102f85638a65fd610597
+SHA1 (patch-ac) = 3ad9f172b6a860425b713401d8f2ca87c6b140fd
diff --git a/cross/avr-gdb/patches/patch-ac b/cross/avr-gdb/patches/patch-ac
new file mode 100644
index 00000000000..c449ebd606b
--- /dev/null
+++ b/cross/avr-gdb/patches/patch-ac
@@ -0,0 +1,13 @@
+$NetBSD: patch-ac,v 1.1 2006/10/13 18:25:59 rillig Exp $
+
+--- gdb/config/djgpp/djconfig.sh.orig 2002-02-25 17:09:45.000000000 +0100
++++ gdb/config/djgpp/djconfig.sh 2006-10-13 20:25:02.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