From 83c4a67a5daf437f717dd519b3a85f8a803e9357 Mon Sep 17 00:00:00 2001 From: Phong Tran Date: Tue, 24 May 2016 06:26:30 +0700 Subject: Refactoring code for installation qml libs - Use ${libdir} instead of hardcoding /usr/lib - Change to use install command for copy files Change-Id: I4506f69c97ad223b94561fd10b97e5a406c4c4d9 Signed-off-by: Phong Tran --- recipes-automotive/climatecontrolplugin/climatecontrolplugin_0.1.bb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'recipes-automotive/climatecontrolplugin') diff --git a/recipes-automotive/climatecontrolplugin/climatecontrolplugin_0.1.bb b/recipes-automotive/climatecontrolplugin/climatecontrolplugin_0.1.bb index 8058bdbf..7f98fb39 100644 --- a/recipes-automotive/climatecontrolplugin/climatecontrolplugin_0.1.bb +++ b/recipes-automotive/climatecontrolplugin/climatecontrolplugin_0.1.bb @@ -18,9 +18,9 @@ RDEPENDS_${PN} = "automotive-message-broker ambdbusaccess" inherit qmake5 do_install () { - mkdir -p ${D}/usr/lib/qt5/qml/Automotive/ClimateControl/ - cp libClimateControl.so ${D}/usr/lib/qt5/qml/Automotive/ClimateControl/ - cp qmldir ${D}/usr/lib/qt5/qml/Automotive/ClimateControl/ + install -d ${D}${libdir}/qt5/qml/Automotive/ClimateControl/ + install -m 0755 libClimateControl.so ${D}${libdir}/qt5/qml/Automotive/ClimateControl/ + install -m 0644 qmldir ${D}${libdir}/qt5/qml/Automotive/ClimateControl/ } FILES_${PN} += "${libdir}/qt5/qml/Automotive/ClimateControl/libClimateControl.so \ -- cgit 1.2.3-korg