summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPieter van den Abeele <pvdabeel@gentoo.org>2004-05-12 16:27:23 +0000
committerPieter van den Abeele <pvdabeel@gentoo.org>2004-05-12 16:27:23 +0000
commit86b62ef70b7ad9b22433f3be29a6cf0b739c7fc8 (patch)
treeecdcebbfb1ac2fa0113b248cbed556a172275bb6 /sys-boot/yaboot/files
parentMarked stable on hppa. (diff)
downloadhistorical-86b62ef70b7ad9b22433f3be29a6cf0b739c7fc8.tar.gz
historical-86b62ef70b7ad9b22433f3be29a6cf0b739c7fc8.tar.bz2
historical-86b62ef70b7ad9b22433f3be29a6cf0b739c7fc8.zip
gcc - 3.4 compilation fix
Diffstat (limited to 'sys-boot/yaboot/files')
-rw-r--r--sys-boot/yaboot/files/yaboot-3.4.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/sys-boot/yaboot/files/yaboot-3.4.patch b/sys-boot/yaboot/files/yaboot-3.4.patch
new file mode 100644
index 000000000000..57964d8a911c
--- /dev/null
+++ b/sys-boot/yaboot/files/yaboot-3.4.patch
@@ -0,0 +1,13 @@
+--- ./lib/strstr.c.orig 2004-05-12 16:16:44.249220125 +0000
++++ ./lib/strstr.c 2004-05-12 16:14:47.245465904 +0000
+@@ -76,7 +76,9 @@
+ a = *++haystack;
+ if (a == '\0')
+ goto ret0;
+-shloop: }
++shloop:
++ a = a;
++ }
+ while (a != b);
+
+ jin: a = *++haystack;