diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-02-23 17:32:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-02-23 17:32:11 +0000 |
commit | 01c4775116dfc20da754bb8253349fb837e2fc53 (patch) | |
tree | 278fde4dddf08d78ae901580641eb8ed40fecb97 /package/system/ubus/Makefile | |
parent | 538e38f5d3261c0d0ffa9e12d6dd52d93d93f0a6 (diff) | |
download | upstream-01c4775116dfc20da754bb8253349fb837e2fc53.tar.gz upstream-01c4775116dfc20da754bb8253349fb837e2fc53.tar.bz2 upstream-01c4775116dfc20da754bb8253349fb837e2fc53.zip |
ubus: declare main version as ABI version for libubus
Reorder BuildPackage calls, as libubox needs to come first for ABI
version handling to work
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39722
Diffstat (limited to 'package/system/ubus/Makefile')
-rw-r--r-- | package/system/ubus/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/system/ubus/Makefile b/package/system/ubus/Makefile index 3da6d16d44..34ff179cc6 100644 --- a/package/system/ubus/Makefile +++ b/package/system/ubus/Makefile @@ -38,6 +38,7 @@ define Package/libubus SECTION:=libs CATEGORY:=Libraries DEPENDS:=+libubox + ABI_VERSION:=$(PKG_VERSION) TITLE:=OpenWrt RPC client library endef @@ -73,8 +74,7 @@ define Package/libubus-lua/install $(CP) $(PKG_BUILD_DIR)/lua/ubus.so $(1)/usr/lib/lua/ endef -$(eval $(call BuildPackage,ubus)) -$(eval $(call BuildPackage,ubusd)) $(eval $(call BuildPackage,libubus)) $(eval $(call BuildPackage,libubus-lua)) - +$(eval $(call BuildPackage,ubus)) +$(eval $(call BuildPackage,ubusd)) |