From 265320d5d05ac87299ec2052fcbeac7092b6b826 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 18 Mar 2013 01:36:35 +0000 Subject: 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 --- meta/recipes-devtools/rpm/rpm_5.4.9.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta/recipes-devtools/rpm/rpm_5.4.9.bb') diff --git a/meta/recipes-devtools/rpm/rpm_5.4.9.bb b/meta/recipes-devtools/rpm/rpm_5.4.9.bb index cdfb5ff4bc..6286771efa 100644 --- a/meta/recipes-devtools/rpm/rpm_5.4.9.bb +++ b/meta/recipes-devtools/rpm/rpm_5.4.9.bb @@ -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 -- cgit v1.2.3-54-g00ecf