From 373bb8e4e7bbd486c9de0bf1b2309473e286a8b0 Mon Sep 17 00:00:00 2001 From: "Sergey V. Lobanov" Date: Wed, 26 Jan 2022 22:20:46 +0300 Subject: [PATCH] reptyr: fix build on macos This patch sets UNAME_S=Linux due to OpenWrt is always Linux but `uname -s` return Darwin on MacOS and fails target build. Signed-off-by: Sergey V. Lobanov --- utils/reptyr/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/reptyr/Makefile b/utils/reptyr/Makefile index 83dd6ba3e..191020747 100644 --- a/utils/reptyr/Makefile +++ b/utils/reptyr/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=reptyr PKG_VERSION:=0.8.0 -PKG_RELEASE:=4 +PKG_RELEASE:=5 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://github.com/nelhage/reptyr/archive/ @@ -34,6 +34,7 @@ define Package/reptyr/description endef MAKE_FLAGS+= \ + UNAME_S=Linux \ PREFIX=/usr define Package/reptyr/install