summaryrefslogtreecommitdiff
path: root/cross/avr-gdb/patches
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2006-10-13 18:25:59 +0000
committerrillig <rillig@pkgsrc.org>2006-10-13 18:25:59 +0000
commitc4dda135cce3e06db05a772b0e043d68c6842070 (patch)
treec9b64aa8484e97af095288d279c572369bd71b59 /cross/avr-gdb/patches
parenta1b770ff85a9d9e3daf8b62f958329f8d9782b1c (diff)
downloadpkgsrc-c4dda135cce3e06db05a772b0e043d68c6842070.tar.gz
Fixed "test ==".
Diffstat (limited to 'cross/avr-gdb/patches')
-rw-r--r--cross/avr-gdb/patches/patch-ac13
1 files changed, 13 insertions, 0 deletions
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