aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorNiko Mauno <niko.mauno@iki.fi>2018-12-01 19:57:14 +0200
committerArmin Kuster <akuster808@gmail.com>2019-02-04 21:21:25 -0800
commit3ef11522fa7c42bd40d38e431fa1e288fd116c19 (patch)
treee7ef9a0b050b7b9a089e1491e05fc916ebea07a7 /meta-oe
parent40359bf750c8a6b0662df6778c148a297a906513 (diff)
downloadmeta-openembedded-3ef11522fa7c42bd40d38e431fa1e288fd116c19.tar.gz
python-pygobject: Tune remove operation
Drop '-f, --force' operator from rm command as that will hide the fact if the removed artifacts cease to exist in later version of this recipe. Also drop a superfluous slash from artifact path. Signed-off-by: Niko Mauno <niko.mauno@iki.fi> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-devtools/python/python-pygobject_3.28.3.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/python/python-pygobject_3.28.3.bb b/meta-oe/recipes-devtools/python/python-pygobject_3.28.3.bb
index 87c1202a14..348a0398f3 100644
--- a/meta-oe/recipes-devtools/python/python-pygobject_3.28.3.bb
+++ b/meta-oe/recipes-devtools/python/python-pygobject_3.28.3.bb
@@ -27,5 +27,5 @@ RDEPENDS_${PN}_class-native = ""
do_install_append() {
# Remove files that clash with python3-pygobject; their content is same
- rm -rf ${D}${includedir}/pygobject-3.0//pygobject.h ${D}${libdir}/pkgconfig
+ rm -r ${D}${includedir}/pygobject-3.0/pygobject.h ${D}${libdir}/pkgconfig
}