From c4ee5df180aa1e985d84fb76e59ff62df35c843e Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 12 Nov 2007 08:02:54 +0000 Subject: [PATCH] Fix stupid typo. --- contrib/crossrpms/patches/gcc-core-4.0.4-rtems4.9-20071111.diff | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. */