diff options
author | Ting Liu <b28495@freescale.com> | 2013-02-01 18:12:38 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-01 15:53:59 +0000 |
commit | f651a84abb0ee179370252818c853eed3c6a1bb7 (patch) | |
tree | 5cb1ad05be2bc497793914534fe018acf7e750ca /meta | |
parent | 8d80483e2f0f755a61087be1dffaf595fbc467fd (diff) | |
download | poky-f651a84abb0ee179370252818c853eed3c6a1bb7.tar.gz |
oprofile: avoid processing files under .pc
Fix the below issue:
| DEBUG: Executing shell function do_configure
| sed: can't read ./.pc/opstart.patch/doc/opstop.1.in: Permission denied
| sed: can't read ./.pc/opstart.patch/doc/opstart.1.in: Permission
denied
| sed: can't read ./.pc/opstart.patch/utils/opstart.c: Permission denied
| ERROR: Function failed: do_configure
(From OE-Core rev: d1003ea86543ce5d09c163db95e9e723aa1adc10)
Signed-off-by: Ting Liu <b28495@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-kernel/oprofile/oprofile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-kernel/oprofile/oprofile.inc b/meta/recipes-kernel/oprofile/oprofile.inc index d6d20ae32a..b09aaf8c5f 100644 --- a/meta/recipes-kernel/oprofile/oprofile.inc +++ b/meta/recipes-kernel/oprofile/oprofile.inc | |||
@@ -19,7 +19,7 @@ FILES_${PN} = "${bindir} ${libdir}/${BPN}/lib*${SOLIBS} ${datadir}/${BPN}" | |||
19 | FILES_${PN}-dev += "${libdir}/${BPN}/lib*${SOLIBSDEV} ${libdir}/${BPN}/lib*.la" | 19 | FILES_${PN}-dev += "${libdir}/${BPN}/lib*${SOLIBSDEV} ${libdir}/${BPN}/lib*.la" |
20 | FILES_${PN}-staticdev += "${libdir}/${BPN}/lib*.a" | 20 | FILES_${PN}-staticdev += "${libdir}/${BPN}/lib*.a" |
21 | 21 | ||
22 | INC_PR = "r1" | 22 | INC_PR = "r2" |
23 | 23 | ||
24 | SRC_URI = "file://opstart.patch \ | 24 | SRC_URI = "file://opstart.patch \ |
25 | file://oprofile-no-query-modules.patch \ | 25 | file://oprofile-no-query-modules.patch \ |
@@ -30,7 +30,7 @@ inherit autotools | |||
30 | 30 | ||
31 | EXTRA_OECONF = "--with-kernel=${STAGING_KERNEL_DIR} --without-x" | 31 | EXTRA_OECONF = "--with-kernel=${STAGING_KERNEL_DIR} --without-x" |
32 | do_configure () { | 32 | do_configure () { |
33 | find . -type f | xargs sed -i 's#ROOTHOME#${ROOT_HOME}#' | 33 | find . -wholename './.pc' -prune -o -type f -print | xargs sed -i 's#ROOTHOME#${ROOT_HOME}#' |
34 | cp ${WORKDIR}/acinclude.m4 ${S}/ | 34 | cp ${WORKDIR}/acinclude.m4 ${S}/ |
35 | autotools_do_configure | 35 | autotools_do_configure |
36 | } | 36 | } |