From 74774f092b1ebb800c4bd4cf98a7e6ff545bb7de Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Mon, 20 Aug 2012 12:51:10 +0200 Subject: [PATCH] connman: fix install of plugins, thanks to 'chewitt' Signed-off-by: Stephan Raue --- packages/network/connman/install | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/network/connman/install b/packages/network/connman/install index 25a4d64cce..397fedb301 100755 --- a/packages/network/connman/install +++ b/packages/network/connman/install @@ -41,8 +41,11 @@ mkdir -p $INSTALL/usr/bin mkdir -p $INSTALL/usr/lib/connman cp -P $PKG_BUILD/test/* $INSTALL/usr/lib/connman +mkdir -p $INSTALL/usr/lib/connman/plugins + cp -P $PKG_BUILD/plugins/.libs/*.so* $INSTALL/usr/lib/connman/plugins || true + mkdir -p $INSTALL/usr/lib/connman/scripts - cp -P $PKG_BUILD/scripts/.libs/*.so* $INSTALL/usr/lib/connman/scripts + cp -P $PKG_BUILD/scripts/.libs/*.so* $INSTALL/usr/lib/connman/scripts || true mkdir -p $INSTALL/usr/sbin cp -P $PKG_BUILD/src/connmand $INSTALL/usr/sbin