Hello everyone, I was hoping someone could help me with this weird error I am having. I'm on iOS 9.0.2 other projects can compile fine, just this one seems to be off. Any help would be great.
Error:
make: getcwd: No such file or directory
make: *** No rule to make target `package'. Stop.
Here is the make file:
ARCHS = armv7 arm64
TARGET = iphone:clang:latest:latest
#CFLAGS = -fobjc-arc
#THEOS_PACKAGE_DIR_NAME = debs
include $(THEOS)/makefiles/common.mk
include $(THEOS)/makefiles/aggregate.mk
TWEAK_NAME = K9
K9_FILES = Tweak.xm
K9_FRAMEWORKS = UIKit CoreGraphics
K9_LIBRARIES = colorpicker # Make sure to put the latest libcolorpicker.dylib from ios /usr/lib/libcolorpicker.dylib
K9_LDFLAGS += -Wl,-segalign,4000
include $(THEOS_MAKE_PATH)/tweak.mk
after-install::
install.exec "killall -9 Kik" # No Reason to kill SpringBoard since we're only injecting into kik
Any help will be great thank you.