Reputation: 31
After many lines of standard output text of chicken-install slime
finally it has printed:
/usr/bin/csi -bnq -setup-mode -e "(require-library setup-api)" -e "(import setup-api)"\
-e "(setup-error-handling)" -e "(extension-name-and-version '(\"synch\" \"2.1.2\"))" /tmp/temp8317.14272/synch/synch.setup
Error: (open-input-file) cannot open file - No such file or directory: "setup-helper"
Chicken version is 4.8.0.3.
Sorry for my English.
Upvotes: 1
Views: 247
Reputation: 31
This is because that I had changed my chicken install path by setting the CHICKEN_REPOSITORY variable. The couse of this problem in that that installed files aren't available for loading by csi for making dependent eggs. Therefore solution of this problem is in setting the CHICKEN_INCLUDE_PATH variable.
Upvotes: 1