Skip to content

repository-path location #5

@kristianlm

Description

@kristianlm

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions