-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
When I build with
TARGET_PATH=/system
adb push files, and run
csi -p '(repository-path)'
I get
"/system/lib"
I believe that should read:
"/system/lib/chicken/7"
Because (use data-structures), for example, fails otherwise. Here's a patch that fixes this:
diff --git a/Makefile b/Makefile
index c666465..065d576 100644
--- a/Makefile
+++ b/Makefile
@@ -42,7 +42,7 @@ target:
ARCH= \
PREFIX=$(TARGET_BASEPATH) \
DESTDIR=$(PWD)/build/target \
- EGGDIR=$(TARGET_BASEPATH)/lib \
+ EGGDIR=$(TARGET_BASEPATH)/lib/chicken/7 \
confclean clean all install
mkdir -p build/target/$(TARGET_BASEPATH)/lib/chicken/7
mv build/target/$(TARGET_BASEPATH)/lib/*.import.* build/target/$(TARGET_BASEPATH)/lib/chicken/7/Perhaps this means the mv command at the end can be dropped? Please note I don't know what I'm doing and the test-cycle is slow!
K.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels