diff options
author | Peter Seebach <peter.seebach@windriver.com> | 2015-09-22 17:59:10 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-23 11:14:28 +0100 |
commit | fb6623e7b9f97dcd6749e441185e4183b9953171 (patch) | |
tree | 697241df1a36d955a3d83dc4cc21be02465929b3 /meta/recipes-devtools/pseudo/pseudo_git.bb | |
parent | 2ad7308ee7166641eff99f3b9fe6794de143f6bc (diff) | |
download | openembedded-core-fb6623e7b9f97dcd6749e441185e4183b9953171.tar.gz openembedded-core-fb6623e7b9f97dcd6749e441185e4183b9953171.tar.bz2 openembedded-core-fb6623e7b9f97dcd6749e441185e4183b9953171.zip |
pseudo_1.7.4.bb: fix f*open()
The 0600 modes were coming from fopen/freopen/etc., because those
don't specify a filesystem mode (just an access mode like "r" or
"w"). Use 0666 & ~umask. (And then the PSEUDO_FS_MODE macro masks
in the 0600 bits we want to be sure are present.)
Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/pseudo/pseudo_git.bb')
-rw-r--r-- | meta/recipes-devtools/pseudo/pseudo_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/pseudo/pseudo_git.bb b/meta/recipes-devtools/pseudo/pseudo_git.bb index 31e1223a48..eb666c064d 100644 --- a/meta/recipes-devtools/pseudo/pseudo_git.bb +++ b/meta/recipes-devtools/pseudo/pseudo_git.bb @@ -1,7 +1,7 @@ require pseudo.inc -SRCREV = "e795df44a90a426a76b790f1b2774f3046a8fc31" -PV = "1.7.2+git${SRCPV}" +SRCREV = "3bc3909fa70535c2ef876009dc58e577b10a7e0e" +PV = "1.7.4+git${SRCPV}" DEFAULT_PREFERENCE = "-1" |