From b4c18988993bd7ea8f46f30cfc6bf1afa194fe67 Mon Sep 17 00:00:00 2001 From: Dmitry Ilyin Date: Fri, 26 Aug 2022 13:13:48 +0300 Subject: [PATCH] Use dynamically determined ipctool latest commit (same idea in microbe-web) --- general/package/ipctool/ipctool.mk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/general/package/ipctool/ipctool.mk b/general/package/ipctool/ipctool.mk index 5709fb72..44d1adc2 100644 --- a/general/package/ipctool/ipctool.mk +++ b/general/package/ipctool/ipctool.mk @@ -4,14 +4,12 @@ # ################################################################################ -IPCTOOL_VERSION = HEAD +IPCTOOL_VERSION = $(shell git ls-remote https://github.com/OpenIPC/ipctool/ master | awk '{ print $$1 }') IPCTOOL_SITE = https://github.com/OpenIPC/ipctool.git IPCTOOL_SITE_METHOD = git IPCTOOL_LICENSE = MIT IPCTOOL_LICENSE_FILES = LICENSE -IPCTOOL_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS=--include .git - IPCTOOL_CONF_OPTS += -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release IPCTOOL_MAKE_OPTS += VERBOSE=1