chicken-scheme: fix EXTRA_DEPENDS
authorGeorge Sapkin <george@sapk.in>
Fri, 19 Dec 2025 13:20:41 +0000 (15:20 +0200)
committerJosef Schlehofer <pepe.schlehofer@gmail.com>
Sun, 21 Dec 2025 13:56:41 +0000 (14:56 +0100)
EXTRA_DEPENDS should be used for version constraints. Change to DEPENDS.

Fixes: 6a559a9 ("chicken-scheme: version 5.2.0; include compiler")
Signed-off-by: George Sapkin <george@sapk.in>
lang/chicken-scheme/Makefile

index c7fb98da20680f411c4f5ce79b2052644698ba9d..2ab9904694c4b54c31624242a27b4f38e0eda64a 100644 (file)
@@ -41,7 +41,7 @@ $(call Package/chicken-scheme/Default)
 endef
 
 define Package/chicken-scheme-interpreter/description
-  Chicken is an implementation of the Scheme language. It is portable, efficient, and supports 
+  Chicken is an implementation of the Scheme language. It is portable, efficient, and supports
   the R5RS and R7RS (work in progress) standards, and many extensions.
   Chicken can be used as a scripting language to automate tasks.
   This package contains the interpreter, 'csi', only --
@@ -93,11 +93,11 @@ define Package/chicken-scheme-full
 $(call Package/chicken-scheme/Default)
   TITLE+=full package
   # csc depends on gcc; chicken-install uses the 'install' command from coreutils
-  EXTRA_DEPENDS:= gcc, coreutils-install
+  DEPENDS:=gcc coreutils-install
 endef
 
 define Package/chicken-scheme-full/description
-  Chicken is an implementation of the Scheme language. It is portable, efficient, and supports 
+  Chicken is an implementation of the Scheme language. It is portable, efficient, and supports
   the R5RS and R7RS (work in progress) standards, and many extensions.
   Chicken can be used as a scripting language to automate tasks.
   This package contains the interpreter, 'csi'; the compiler, 'csc';