diff options
author | Arun Isaac | 2022-01-16 01:34:00 +0530 |
---|---|---|
committer | Arun Isaac | 2022-01-16 12:24:45 +0530 |
commit | 58421411541c99011c59c7f81bf3763bc1f75dd0 (patch) | |
tree | 2ee0d809b2a0a648cef755b007d5dbf2d3f70932 | |
parent | 95300bf9c4cee568fe9e51cae842a52098efe37f (diff) | |
download | ccwl-58421411541c99011c59c7f81bf3763bc1f75dd0.tar.gz ccwl-58421411541c99011c59c7f81bf3763bc1f75dd0.tar.lz ccwl-58421411541c99011c59c7f81bf3763bc1f75dd0.zip |
scripts: Decide to not compile files ever.
* scripts/ccwl (main): Remove FIXME note about compiling ccwl files.
-rwxr-xr-x | scripts/ccwl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/ccwl b/scripts/ccwl index 1215486..c9250cc 100755 --- a/scripts/ccwl +++ b/scripts/ccwl @@ -80,8 +80,9 @@ Compile SOURCE-FILE. program) (current-error-port)) (exit (assq 'help args))) - ;; FIXME: Compiling ccwl files fails since the workflow macro is - ;; unable to access command definitions. + ;; We don't need to compile ccwl files. Loading is sufficient + ;; for our purposes. Besides, compiling would fail since the + ;; workflow macro cannot access command definitions. (set! %load-should-auto-compile #f) (let ((to (assq-ref args 'to))) ((cond |