From f02840a31b3074792fc2fed8b0bb64f9e8132369 Mon Sep 17 00:00:00 2001 From: "aric3435 (INACTIVE)" <78001398+arichornlover@users.noreply.github.com> Date: Wed, 9 Oct 2024 17:07:52 -0500 Subject: [PATCH] Update Makefile Fixes Preferences not found error on Alderis. --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ebb5990..bafd629 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ TARGET = iphone:clang:16.5:14.0 -YTLitePlus_USE_FISHHOOK = 0 +export SDK_PATH = $(THEOS)/sdks/iPhoneOS16.5.sdk/ +export SYSROOT = $(SDK_PATH) ARCHS = arm64 MODULES = jailed FINALPACKAGE = 1 @@ -20,6 +21,7 @@ YTLitePlus_FILES = YTLitePlus.xm $(shell find Source -name '*.xm' -o -name '*.x' YTLitePlus_IPA = ./tmp/Payload/YouTube.app YTLitePlus_CFLAGS = -fobjc-arc -Wno-deprecated-declarations -Wno-unsupported-availability-guard -Wno-unused-but-set-variable -DTWEAK_VERSION=$(PACKAGE_VERSION) $(EXTRA_CFLAGS) YTLitePlus_FRAMEWORKS = UIKit Security +YTLitePlus_USE_FISHHOOK = 0 include $(THEOS)/makefiles/common.mk include $(THEOS_MAKE_PATH)/tweak.mk