diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-27 10:56:06 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-03-30 00:28:47 +0100 |
commit | d6c13a5ff441f7076eb327c0d0b747bd7603db0f (patch) | |
tree | 5e818c1a1cb5f2b51df81dea744cf294aece41c8 /meta/classes | |
parent | 6bb70bd3857edb8cb6cc1317f57b899a89be2653 (diff) | |
download | openembedded-core-d6c13a5ff441f7076eb327c0d0b747bd7603db0f.tar.gz openembedded-core-d6c13a5ff441f7076eb327c0d0b747bd7603db0f.tar.bz2 openembedded-core-d6c13a5ff441f7076eb327c0d0b747bd7603db0f.zip |
package_rpm: set _builddir to B not S
Recipes which use a shared workdir (e.g. gcc-runtine and libgcc) can
race over temporary files causing interesting build failures.
Using B instead of S avoids this problem.
[YOCTO #12605]
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/package_rpm.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/package_rpm.bbclass b/meta/classes/package_rpm.bbclass index af64ef62c5..21ada348aa 100644 --- a/meta/classes/package_rpm.bbclass +++ b/meta/classes/package_rpm.bbclass @@ -670,7 +670,7 @@ python do_package_rpm () { cmd = rpmbuild cmd = cmd + " --noclean --nodeps --short-circuit --target " + pkgarch + " --buildroot " + pkgd cmd = cmd + " --define '_topdir " + workdir + "' --define '_rpmdir " + pkgwritedir + "'" - cmd = cmd + " --define '_builddir " + d.getVar('S') + "'" + cmd = cmd + " --define '_builddir " + d.getVar('B') + "'" cmd = cmd + " --define '_build_name_fmt %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm'" cmd = cmd + " --define '_use_internal_dependency_generator 0'" cmd = cmd + " --define '_binaries_in_noarch_packages_terminate_build 0'" |