mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 17:19:20 +00:00
rpm: Fix case where ${B} != ${S}
Fix out of tree builds by removing assumptions about cwd and using
full paths to files in ${S}.
(From OE-Core rev: 6c2d3ced1af4e7ebc63e9a9ac9353d565d1568bf)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -358,13 +358,13 @@ FILES_${PN}-staticdev = " \
|
||||
|
||||
do_configure() {
|
||||
# Disable tests!
|
||||
echo "all:" > tests/Makefile.am
|
||||
echo "all:" > ${S}/tests/Makefile.am
|
||||
|
||||
./autogen.sh
|
||||
${S}/autogen.sh
|
||||
|
||||
# NASTY hack to make sure configure files the right pkg-config file...
|
||||
sed -e 's/pkg-config --exists uuid/pkg-config --exists ossp-uuid/g' \
|
||||
-e 's/pkg-config uuid/pkg-config ossp-uuid/g' -i configure
|
||||
-e 's/pkg-config uuid/pkg-config ossp-uuid/g' -i ${S}/configure
|
||||
|
||||
export varprefix=${localstatedir}
|
||||
oe_runconf
|
||||
|
||||
Reference in New Issue
Block a user