aboutsummaryrefslogtreecommitdiff
path: root/src/data
diff options
context:
space:
mode:
Diffstat (limited to 'src/data')
-rw-r--r--src/data/asdf.lisp11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/data/asdf.lisp b/src/data/asdf.lisp
index 67d405c..5db7c7a 100644
--- a/src/data/asdf.lisp
+++ b/src/data/asdf.lisp
@@ -40,17 +40,8 @@
(defun get-path-to-concatenated-system (iden1 system)
"Try to concatenate all the source code for SYSTEM, store it somewhere and
return the filename."
- (let ((cache-dir (ensure-directory-pathname
- (strcat (or (getenv "XDG_CACHE_HOME")
- (strcat (getenv "HOME") "/.cache"))
- "/consfigurator/systems")))
- (op 'asdf:monolithic-concatenate-source-op)
+ (let ((op 'asdf:monolithic-concatenate-source-op)
(co (asdf:find-component system nil)))
- (ensure-directories-exist cache-dir)
- (asdf:initialize-output-translations `(:output-translations
- (t ,cache-dir)
- :disable-cache
- :ignore-inherited-configuration))
(asdf:operate op co)
(make-instance 'file-data :file (asdf:output-file op co)
:mime "text/plain"