diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-09 11:09:36 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-09 11:09:39 -0800 |
commit | e4da78229f0bd67fd34928eafe48dbdc9e8da050 (patch) | |
tree | 97996439b9b41bff0b3e291cb0b7dbfa040d155f | |
parent | 549b52d6d16ff80f1adf246e69c3adcc792d1211 (diff) | |
download | openembedded-core-e4da78229f0bd67fd34928eafe48dbdc9e8da050.tar.gz openembedded-core-e4da78229f0bd67fd34928eafe48dbdc9e8da050.tar.bz2 openembedded-core-e4da78229f0bd67fd34928eafe48dbdc9e8da050.zip |
e2fsprogs: Add comment on why touch is needed
Commit b32f3b655189fd89dcfce084b6fda0d379300f75 added this code
but we could do with a commit so people realise why its there.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.8.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.8.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.8.bb index 4fa976d51f..56abb3b5d3 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.8.bb +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.8.bb @@ -25,6 +25,8 @@ EXTRA_OECONF_darwin = "--libdir=${base_libdir} --sbindir=${base_sbindir} --enabl PACKAGECONFIG ??= "" PACKAGECONFIG[fuse] = '--enable-fuse2fs,--disable-fuse2fs,fuse' +# make locale rules sometimes fire, sometimes don't as git doesn't preserve +# file mktime. Touch the files introducing non-determinism to the build do_compile_prepend (){ find ${S}/po -type f -name "*.po" -exec touch {} + } |