summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/perf
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2014-03-04 16:46:02 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-07 14:58:44 +0000
commit370717d32821d0c6d82901e6b4de7cdbba20bbaf (patch)
treeff62e7fb7cb6bb2ca7c37be2e29946dba8594c43 /meta/recipes-kernel/perf
parentbaa8b031f2640a60467652625856529d9a57c6fb (diff)
downloadast2050-yocto-poky-370717d32821d0c6d82901e6b4de7cdbba20bbaf.zip
ast2050-yocto-poky-370717d32821d0c6d82901e6b4de7cdbba20bbaf.tar.gz
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 <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/perf')
-rw-r--r--meta/recipes-kernel/perf/perf.bb8
1 files changed, 4 insertions, 4 deletions
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
OpenPOWER on IntegriCloud