From e3b394f3f0c01539efccfda8450b39d070cdc71d Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Mon, 30 Jan 2012 01:40:56 +0000 Subject: Map Guile variable objects to the empty string. In Guile 2.0, (define ...) results in a variable object. Ensure make converts that to an empty string to avoid spurious errors. --- gmk-default.scm | 1 + 1 file changed, 1 insertion(+) (limited to 'gmk-default.scm') diff --git a/gmk-default.scm b/gmk-default.scm index 9aca54a..4dabe25 100644 --- a/gmk-default.scm +++ b/gmk-default.scm @@ -20,6 +20,7 @@ ;; In GNU make, "false" is the empty string ((or (not x) (unspecified? x) + (variable? x) (null? x) (and (string? x) (string-null? x))) #f) -- cgit v1.2.3