diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-01-25 22:59:13 -0800 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2021-01-25 22:59:13 -0800 |
commit | b67524aa174b1e41ff3353459d427f889658d687 (patch) | |
tree | 4be6dff036923e52519ef4b6b2a9b15646c7f6ca /libs/pthsem | |
parent | d92f087340f9a547eaea6a8df2b14f10a379eae9 (diff) |
pthsem: try to fix ARC compilation
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'libs/pthsem')
-rw-r--r-- | libs/pthsem/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libs/pthsem/Makefile b/libs/pthsem/Makefile index 5ce4f53d6..f9f35a5c2 100644 --- a/libs/pthsem/Makefile +++ b/libs/pthsem/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=pthsem PKG_VERSION:=2.0.8 -PKG_RELEASE:=6 +PKG_RELEASE:=7 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.auto.tuwien.ac.at/~mkoegler/pth/ @@ -40,10 +40,8 @@ endef # The musl libc provides a proper implementation of sigaltstack() so # prevent configure from wrongly assuming a broken Linux platform -ifneq ($(CONFIG_USE_GLIBC),y) - CONFIGURE_VARS += \ +CONFIGURE_VARS += \ ac_cv_check_sjlj=ssjlj -endif define Build/InstallDev $(INSTALL_DIR) $(1)/usr/bin |