Hi,

Sorry.  It looks like I screwed up in 212cfd27516e.  The attached patch
should fix it.

All the best.
Mario
-- 
https://parenteses.org/mario
>From cf9f1b283abdf6e3841accfbfc6b486075167842 Mon Sep 17 00:00:00 2001
From: Mario Domenech Goulart <[email protected]>
Date: Fri, 5 Dec 2025 11:47:30 +0100
Subject: [PATCH] scripts/makedist.scm: Fix cond clause

Typo introduced in 212cfd27516e.
---
 scripts/makedist.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/scripts/makedist.scm b/scripts/makedist.scm
index bda4272c..de0771d7 100644
--- a/scripts/makedist.scm
+++ b/scripts/makedist.scm
@@ -85,8 +85,7 @@
     (if (null? args)
 	'()
 	(let ((arg (car args)))
-	  (cond ((loop (cdr args)))
-		((string=? "-make" arg)
+	  (cond ((string=? "-make" arg)
 		 (set! *make* (cadr args))
 		 (loop (cddr args)))
 		((string=? "-help" arg)
-- 
2.47.3

  • [PATCH][C6] scripts/makedist.sc... Mario Domenech Goulart via Chicken-hackers

Reply via email to