From abf6242f9cda30d7d59655dd4276e3f9038fbf2e Mon Sep 17 00:00:00 2001 From: Markham Date: Sun, 30 Nov 2025 13:10:58 +0100 Subject: [PATCH] fix aio-grab build version --- make/applications.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/make/applications.mk b/make/applications.mk index 60c5147..0fd5aec 100755 --- a/make/applications.mk +++ b/make/applications.mk @@ -910,6 +910,7 @@ $(D)/mc: $(D)/libncurses $(D)/libglib2 $(ARCHIVE)/mc-$(MC_VER).tar.xz | $(TARGET # # aio-grab # +AIO_GRAB_VERSION = 32e30fed AIO_PATCH = aio-grab/0001-automake_macros.patch AIO_PATCH += aio-grab/0002-screenshots-for-pip-devices.patch @@ -919,7 +920,9 @@ $(D)/aio-grab: $(D)/zlib $(D)/libpng $(D)/libjpeg | $(TARGETPREFIX) cd $(BUILD_TMP); \ git clone https://github.com/oe-alliance/aio-grab.git aio-grab; \ cd aio-grab; \ + git checkout 32e30fed; \ $(call apply_patches, $(AIO_PATCH)); \ + find . -name '*.rej' | grep -q . && { echo "Patch-Hunks fehlgeschlagen!"; exit 1; }; \ aclocal --force -I m4; \ autoconf --force; \ automake --add-missing --copy --force-missing --foreign; \ -- 2.39.5