diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-06-28 11:27:24 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-06-28 11:27:24 +0000 |
commit | 2c7530a62229dac8a6f4049fbfb5d327e9361c2c (patch) | |
tree | ef1b1fdeb583707dd524ab008de2f6073e742c55 | |
parent | 7acb84dde7e0a88ffc6e53efa2b9bcb1967b445d (diff) | |
download | upstream-2c7530a62229dac8a6f4049fbfb5d327e9361c2c.tar.gz upstream-2c7530a62229dac8a6f4049fbfb5d327e9361c2c.tar.bz2 upstream-2c7530a62229dac8a6f4049fbfb5d327e9361c2c.zip |
ubus: fix ubus lua binding duplication
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37074
-rw-r--r-- | package/system/ubus/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/system/ubus/Makefile b/package/system/ubus/Makefile index abd0a7653b..559840e4f9 100644 --- a/package/system/ubus/Makefile +++ b/package/system/ubus/Makefile @@ -69,7 +69,7 @@ endef define Package/libubus/install $(INSTALL_DIR) $(1)/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so $(1)/lib/ endef define Package/libubus-lua/install |