diff --git a/packages/addons/addon-depends/system-tools-depends/inotify-tools/package.mk b/packages/addons/addon-depends/system-tools-depends/inotify-tools/package.mk index 385380261d..97834128c3 100644 --- a/packages/addons/addon-depends/system-tools-depends/inotify-tools/package.mk +++ b/packages/addons/addon-depends/system-tools-depends/inotify-tools/package.mk @@ -2,8 +2,8 @@ # Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv) PKG_NAME="inotify-tools" -PKG_VERSION="4.23.8.0" -PKG_SHA256="8ad8b72a146af57688f3289b33b92a026915fc677997147071887b65b603d20a" +PKG_VERSION="4.23.9.0" +PKG_SHA256="1dfa33f80b6797ce2f6c01f454fd486d30be4dca1b0c5c2ea9ba3c30a5c39855" PKG_LICENSE="GPLv2" PKG_SITE="http://wiki.github.com/inotify-tools/inotify-tools/" PKG_URL="https://github.com/inotify-tools/inotify-tools/archive/${PKG_VERSION}.tar.gz" diff --git a/packages/addons/addon-depends/system-tools-depends/inotify-tools/patches/0001-fix-build-when-being-done-out-of-tree.patch b/packages/addons/addon-depends/system-tools-depends/inotify-tools/patches/0001-fix-build-when-being-done-out-of-tree.patch deleted file mode 100644 index dccdc9ef9a..0000000000 --- a/packages/addons/addon-depends/system-tools-depends/inotify-tools/patches/0001-fix-build-when-being-done-out-of-tree.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 0abc50311077e9475036e8996f2f4a703676c221 Mon Sep 17 00:00:00 2001 -From: Rudi Heitbaum -Date: Thu, 24 Aug 2023 21:49:21 +0000 -Subject: [PATCH] fix build when being done out of tree - -use relative pathes for includes ---- - src/Makefile.am | 8 ++++---- - 1 file changed, 4 insertions(+), 4 deletions(-) - -diff --git a/src/Makefile.am b/src/Makefile.am -index 854a101..46473ca 100644 ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -12,11 +12,11 @@ fsnotifywatch_CPPFLAGS = $(AM_CPPFLAGS) -DENABLE_FANOTIFY - endif - - if IS_CLANG --AM_CFLAGS = -std=c99 -fno-exceptions -Wall -Wextra -Wshadow -Werror -Wno-unused-command-line-argument -I../libinotifytools/src --AM_CPPFLAGS = -std=c++17 -fno-exceptions -Wall -Wextra -Wshadow -Werror -Wno-unused-command-line-argument -I../libinotifytools/src -+AM_CFLAGS = -std=c99 -fno-exceptions -Wall -Wextra -Wshadow -Werror -Wno-unused-command-line-argument -I../libinotifytools/src -I$(srcdir)/../libinotifytools/src -+AM_CPPFLAGS = -std=c++17 -fno-exceptions -Wall -Wextra -Wshadow -Werror -Wno-unused-command-line-argument -I../libinotifytools/src -I$(srcdir)/../libinotifytools/src - else --AM_CFLAGS = -std=c99 -fno-exceptions -Wall -Wextra -Wshadow -Werror -I../libinotifytools/src --AM_CPPFLAGS = -std=c++17 -fno-exceptions -Wall -Wextra -Wshadow -Werror -I../libinotifytools/src -+AM_CFLAGS = -std=c99 -fno-exceptions -Wall -Wextra -Wshadow -Werror -I../libinotifytools/src -I$(srcdir)/../libinotifytools/src -+AM_CPPFLAGS = -std=c++17 -fno-exceptions -Wall -Wextra -Wshadow -Werror -I../libinotifytools/src -I$(srcdir)/../libinotifytools/src - endif - - LDADD = ../libinotifytools/src/libinotifytools.la --- -2.34.1 -