diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-02-11 02:11:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-02-11 02:11:12 +0000 |
commit | 04248bbd8f9ee877080e116d54cc8bcfaefefca3 (patch) | |
tree | a860a2c0743b10771dda09bb019dd8a0a75ae1bc /package | |
parent | be78d52fc63fa894cb6acff5876c8389c341e2ad (diff) | |
download | upstream-04248bbd8f9ee877080e116d54cc8bcfaefefca3.tar.gz upstream-04248bbd8f9ee877080e116d54cc8bcfaefefca3.tar.bz2 upstream-04248bbd8f9ee877080e116d54cc8bcfaefefca3.zip |
add missing chunk from the last commit
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25460 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/libubox/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/libubox/Makefile b/package/libubox/Makefile index 9743e8e256..808a1a0e68 100644 --- a/package/libubox/Makefile +++ b/package/libubox/Makefile @@ -34,7 +34,12 @@ TARGET_CFLAGS += -I$(STAGING_DIR)/usr/include define Package/libubox/install $(INSTALL_DIR) $(1)/lib/ - $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/*.so $(1)/lib/ + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libubox.so $(1)/lib/ +endef + +define Package/libblobmsg-json/install + $(INSTALL_DIR) $(1)/lib/ + $(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/lib/libblobmsg_json.so $(1)/lib/ endef $(eval $(call BuildPackage,libubox)) |