~ chicken-core (chicken-5) 3cecf0a7ad0e1cda450d4b0384db059a8aa11afe
commit 3cecf0a7ad0e1cda450d4b0384db059a8aa11afe
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Tue Nov 15 16:35:20 2016 +0100
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Tue Nov 15 16:35:20 2016 +0100
use new module for pathnames
diff --git a/chicken-install.scm b/chicken-install.scm
index 009743b9..05259d61 100644
--- a/chicken-install.scm
+++ b/chicken-install.scm
@@ -39,6 +39,7 @@
(import (chicken posix))
(import (chicken io))
(import (chicken time))
+(import (chicken pathname))
(import (chicken pretty-print))
(define +defaults-version+ 2)
diff --git a/chicken-status.scm b/chicken-status.scm
index d1eb3f9f..e014d258 100644
--- a/chicken-status.scm
+++ b/chicken-status.scm
@@ -34,6 +34,7 @@
(chicken irregex)
(chicken ports)
(chicken posix)
+ (chicken pathname)
(chicken pretty-print))
(include "mini-srfi-1.scm")
diff --git a/chicken-uninstall.scm b/chicken-uninstall.scm
index 991f3bda..3d12074c 100644
--- a/chicken-uninstall.scm
+++ b/chicken-uninstall.scm
@@ -35,6 +35,7 @@
(chicken format)
(chicken irregex)
(chicken ports)
+ (chicken pathname)
(chicken posix))
(include "mini-srfi-1.scm")
Trap