From 13810e0980c35c35f27e98fdb0cbb9ae214a5960 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Fri, 3 Jan 2020 18:54:26 -0800 Subject: [PATCH] liburcu: Don't build under ARC, not even InstallDev This should finally get rid of buildbot failures. Signed-off-by: Rosen Penev --- libs/liburcu/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/liburcu/Makefile b/libs/liburcu/Makefile index 401c5db54..c4ed4ab75 100644 --- a/libs/liburcu/Makefile +++ b/libs/liburcu/Makefile @@ -32,19 +32,21 @@ define Package/liburcu CATEGORY:=Libraries TITLE:=User-space Read-Copy-Update library URL:=https://lttng.org/ - DEPENDS:=+libpthread @!TARGET_arc770 @!TARGET_archs38 + DEPENDS:=+libpthread @!arc endef define Package/liburcu/description Userspace Read-Copy-Update library. endef +ifeq ($(CONFIG_arc),) define Build/InstallDev $(INSTALL_DIR) $(1)/usr/include $(CP) $(PKG_INSTALL_DIR)/usr/include/urcu* $(1)/usr/include/ $(INSTALL_DIR) $(1)/usr/lib $(CP) $(PKG_INSTALL_DIR)/usr/lib/liburcu*.{a,so*} $(1)/usr/lib/ endef +endif define Package/liburcu/install $(INSTALL_DIR) $(1)/usr/lib