From 370717d32821d0c6d82901e6b4de7cdbba20bbaf Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Tue, 4 Mar 2014 16:46:02 +0000 Subject: perf: don't use oe.path.relative Instead of using oe.path.relative, use the Python Standard Library function os.path.relpath. (From OE-Core rev: 01f640f2e878ef86db4138f422fdf74f5f41c8c5) Signed-off-by: Ross Burton Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-kernel/perf/perf.bb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'meta/recipes-kernel/perf/perf.bb') diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb index 6258cbb..56576d5 100644 --- a/meta/recipes-kernel/perf/perf.bb +++ b/meta/recipes-kernel/perf/perf.bb @@ -86,10 +86,10 @@ EXTRA_OEMAKE += "\ 'sysconfdir=${sysconfdir}' \ 'perfexecdir=${libexecdir}/perf-core' \ \ - 'ETC_PERFCONFIG=${@oe.path.relative(prefix, sysconfdir)}' \ - 'sharedir=${@oe.path.relative(prefix, datadir)}' \ - 'mandir=${@oe.path.relative(prefix, mandir)}' \ - 'infodir=${@oe.path.relative(prefix, infodir)}' \ + 'ETC_PERFCONFIG=${@os.path.relpath(sysconfdir, prefix)}' \ + 'sharedir=${@os.path.relpath(datadir, prefix)}' \ + 'mandir=${@os.path.relpath(mandir, prefix)}' \ + 'infodir=${@os.path.relpath(infodir, prefix)}' \ " # PPC64 uses long long for u64 in the kernel, but powerpc's asm/types.h -- cgit v1.1