diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2016-02-19 00:54:44 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-28 11:32:58 +0000 |
commit | 26f951b99d075be0be27ad6ecee0a48737c28140 (patch) | |
tree | 2f76f00383cd7989087e8f9577c2a99e296ff6f0 /meta/recipes-devtools/git | |
parent | 033db243ae01530cdbc65bd2a9cf7f9319e42a2c (diff) | |
download | poky-26f951b99d075be0be27ad6ecee0a48737c28140.tar.gz |
git: fix installed-vs-shipped QA Issue
Since commit set default libexecdir to $prefix/libexec
...
commit f35b2e29d9bfa817e64b83df11ebbbfe0f4e8e5c
Author: Ross Burton <ross.burton@intel.com>
Date: Tue Apr 30 20:35:54 2013 +0100
bitbake: set default libexecdir to $prefix/libexec
...
It casued '${D}${libdir}' does not exist, and the following
move operation incorrect which triggered QA Issue:
...
ERROR: git-2.7.0-r0 do_package: QA Issue: git: Files/directories were installed but not shipped in any package:
/usr/lib64
/usr/lib64/site_perl
/usr/lib64/site_perl/5.22.1
...
(From OE-Core rev: 2b82a475a7c8310f432b872e9d1e5eca262a03ee)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/git')
-rw-r--r-- | meta/recipes-devtools/git/git.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc index c19e0d4748..a1d0300be7 100644 --- a/meta/recipes-devtools/git/git.inc +++ b/meta/recipes-devtools/git/git.inc | |||
@@ -50,6 +50,8 @@ perl_native_fixup () { | |||
50 | 50 | ||
51 | # ${libdir} is not applicable here, perl-native files are always | 51 | # ${libdir} is not applicable here, perl-native files are always |
52 | # installed to /usr/lib on both 32/64 bits targets. | 52 | # installed to /usr/lib on both 32/64 bits targets. |
53 | |||
54 | mkdir -p ${D}${libdir} | ||
53 | mv ${D}${exec_prefix}/lib/perl-native/perl ${D}${libdir} | 55 | mv ${D}${exec_prefix}/lib/perl-native/perl ${D}${libdir} |
54 | rmdir -p ${D}${exec_prefix}/lib/perl-native || true | 56 | rmdir -p ${D}${exec_prefix}/lib/perl-native || true |
55 | } | 57 | } |