diff options
author | Denys Dmytriyenko <denys@ti.com> | 2015-03-02 11:17:58 -0500 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-03-03 08:32:08 +0100 |
commit | 7a65ba6089560efdd840a9590684c24fbcdb7818 (patch) | |
tree | 64d7e96c10927bab8cb34601be7d6b72346f6748 | |
parent | 89fc70e465543ae7ffa404512d9d1d7f2b1c7ae3 (diff) | |
download | meta-qt5-7a65ba6089560efdd840a9590684c24fbcdb7818.tar.gz |
nativesdk-qtbase.inc: avoid removing directories, namely /usr/lib itself
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | recipes-qt/qt5/nativesdk-qtbase.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-qt/qt5/nativesdk-qtbase.inc b/recipes-qt/qt5/nativesdk-qtbase.inc index 3bad980d..35953bbe 100644 --- a/recipes-qt/qt5/nativesdk-qtbase.inc +++ b/recipes-qt/qt5/nativesdk-qtbase.inc | |||
@@ -230,7 +230,7 @@ do_install() { | |||
230 | ${D}/${OE_QMAKE_PATH_PLUGINS} \ | 230 | ${D}/${OE_QMAKE_PATH_PLUGINS} \ |
231 | ${D}${libdir}/cmake \ | 231 | ${D}${libdir}/cmake \ |
232 | ${D}${libdir}/pkgconfig | 232 | ${D}${libdir}/pkgconfig |
233 | find ${D}${libdir} -maxdepth 1 -name 'lib*' -and \ | 233 | find ${D}${libdir} -maxdepth 1 -name 'lib*' -and -not -type d -and \ |
234 | -not -name 'libQt5Core.so*' -and \ | 234 | -not -name 'libQt5Core.so*' -and \ |
235 | ${QTLIBSPRESERVE} \ | 235 | ${QTLIBSPRESERVE} \ |
236 | -not -name 'libQt5Bootstrap.a' \ | 236 | -not -name 'libQt5Bootstrap.a' \ |