mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 15:38:40 +01:00
prometheus: Fix build for mips64/mips64el
Prometheus uses an older version of fsnotify, which uses a system call (unix.InotifyInit) that is not implemented for mips64/mips64el. This patches Prometheus to use a newer version of fsnotify that uses a different system call (unix.InotifyInit1) that should be available on all Linux systems. Fixes #9494. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
@@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=prometheus
|
||||
PKG_VERSION:=2.10.0
|
||||
PKG_RELEASE:=1
|
||||
PKG_RELEASE:=2
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://codeload.github.com/prometheus/prometheus/tar.gz/v${PKG_VERSION}?
|
||||
|
||||
Reference in New Issue
Block a user