diff options
author | Jonas Bonn <jonas.bonn@gmail.com> | 2008-12-06 18:19:34 -0500 |
---|---|---|
committer | Tom Rini <trini@embeddedalley.com> | 2008-12-06 18:19:34 -0500 |
commit | 654ede98b91d54f1cae410898921ba52545be200 (patch) | |
tree | b57e8ad5e4a8bfe3d7337a3fbb910f9534d67d64 /packages/gcc/gcc-3.4.6.inc | |
parent | a633365b0f23b8f9baa551c0c02e6ce4d96ee9c7 (diff) |
gcc, gcc-native 3.4.6 : Fix O_CREAT permissions for -D_FORTIFY_SOURCE
On Ubuntu Intrepid, -D_FORTIFY_SOURCE is enabled by default, thus
requiring file permissions when the O_CREAT flag is set on open. This
patch remedies this for gcc-3.4.6.
Signed-off-by: Jonas Bonn <jonas.bonn@gmail.com>
Diffstat (limited to 'packages/gcc/gcc-3.4.6.inc')
-rw-r--r-- | packages/gcc/gcc-3.4.6.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/gcc/gcc-3.4.6.inc b/packages/gcc/gcc-3.4.6.inc index b1f686b365..a467860e9e 100644 --- a/packages/gcc/gcc-3.4.6.inc +++ b/packages/gcc/gcc-3.4.6.inc @@ -17,7 +17,8 @@ SRC_URI = "${GNU_MIRROR}/gcc/gcc-${PV}/gcc-${PV}.tar.bz2 \ file://GCOV_PREFIX_STRIP-cross-profile_3.4.patch;patch=1 \ file://zecke-xgcc-cpp.patch;patch=1 \ file://gcc-posix.patch;patch=1 \ - file://gcc4-mtune-compat.patch;patch=1" + file://gcc4-mtune-compat.patch;patch=1 \ + file://O_CREAT-perms.patch;patch=1" SRC_URI += "file://gcc34-configure.in.patch;patch=1" SRC_URI += "file://gcc34-thumb-support.patch;patch=1" |