diff options
Diffstat (limited to 'module/system/base/compile.scm')
-rw-r--r-- | module/system/base/compile.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/module/system/base/compile.scm b/module/system/base/compile.scm index 9f0ff2f3d..dfe8823be 100644 --- a/module/system/base/compile.scm +++ b/module/system/base/compile.scm @@ -131,7 +131,8 @@ (else (car %load-compiled-extensions)))) (and %compile-fallback-path (let ((f (string-append - %compile-fallback-path "/" file (compiled-extension)))) + %compile-fallback-path "/" (canonicalize-path file) + (compiled-extension)))) (and (false-if-exception (ensure-writable-dir (dirname f))) f)))) |