From: Felipe Huici Date: Thu, 2 Apr 2020 09:43:16 +0000 (+0200) Subject: Freeze the library against a particular commit hash. X-Git-Tag: RELEASE-0.5^0 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8d9296d3201055fcf7a805e3879ca82eccbe4e4e;p=unikraft%2Flibs%2Fpthreadpool.git Freeze the library against a particular commit hash. Currently pthreadpool builds against master. Since master changes, this makes the build of this library brittle; in this patch we freeze against one of the latest commits. Signed-off-by: Felipe Huici Reviewed-by: Vlad-Andrei Badoiu --- diff --git a/Makefile.uk b/Makefile.uk index 6944c74..d62f305 100644 --- a/Makefile.uk +++ b/Makefile.uk @@ -39,15 +39,15 @@ $(eval $(call addlib_s,libpthreadpool,$(CONFIG_LIBPTHREADPOOL))) ################################################################################ # Sources ################################################################################ -LIBPTHREADPOOL_VERSION=master -LIBPTHREADPOOL_URL=https://github.com/Maratyszcza/pthreadpool/archive/master.zip +LIBPTHREADPOOL_VERSION=76042155a8b1e189c8f141429fd72219472c32e1 +LIBPTHREADPOOL_URL=https://github.com/Maratyszcza/pthreadpool/archive/$(LIBPTHREADPOOL_VERSION).zip LIBPTHREADPOOL_PATCHDIR=$(LIBPTHREADPOOL_BASE)/patches $(eval $(call fetch,libpthreadpool,$(LIBPTHREADPOOL_URL))) ################################################################################ # Helpers ################################################################################ -LIBPTHREADPOOL_SUBDIR=pthreadpool-master +LIBPTHREADPOOL_SUBDIR=pthreadpool-$(LIBPTHREADPOOL_VERSION) LIBPTHREADPOOL_SRC=$(LIBPTHREADPOOL_ORIGIN)/$(LIBPTHREADPOOL_SUBDIR) ################################################################################