summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-11-12 08:02:54 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-11-12 08:02:54 +0000
commitc4ee5df180aa1e985d84fb76e59ff62df35c843e (patch)
tree0ad27892b3077e2971aabdd327791ea0f21f32d1 /contrib
parentNew. (diff)
downloadrtems-c4ee5df180aa1e985d84fb76e59ff62df35c843e.tar.bz2
Fix stupid typo.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/crossrpms/patches/gcc-core-4.0.4-rtems4.9-20071111.diff2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/crossrpms/patches/gcc-core-4.0.4-rtems4.9-20071111.diff b/contrib/crossrpms/patches/gcc-core-4.0.4-rtems4.9-20071111.diff
index 0cc3f0bdc6..98306a0a4d 100644
--- a/contrib/crossrpms/patches/gcc-core-4.0.4-rtems4.9-20071111.diff
+++ b/contrib/crossrpms/patches/gcc-core-4.0.4-rtems4.9-20071111.diff
@@ -6,7 +6,7 @@ diff -uNr gcc-4.0.4.orig/gcc/collect2.c gcc-4.0.4/gcc/collect2.c
{
/* Open response file. */
- redir_handle = open (redir, O_WRONLY | O_TRUNC | O_CREAT);
-+ redir_handle = open (redir, O_WRONLY | O_TRUNC | O_CREAT, S_IWRUSR | S_IRUSR);
++ redir_handle = open (redir, O_WRONLY | O_TRUNC | O_CREAT, S_IWUSR | S_IRUSR);
/* Duplicate the stdout and stderr file handles
so they can be restored later. */