Browse Source

liburcu: Don't build under ARC, not even InstallDev

This should finally get rid of buildbot failures.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
lilik-openwrt-22.03
Rosen Penev 5 years ago
parent
commit
13810e0980
No known key found for this signature in database GPG Key ID: 36D31CFA845F0E3B
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libs/liburcu/Makefile

+ 3
- 1
libs/liburcu/Makefile View File

@ -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


Loading…
Cancel
Save