Skip to content

Instantly share code, notes, and snippets.

@aprell
Created April 22, 2014 20:23
Show Gist options
  • Save aprell/11193022 to your computer and use it in GitHub Desktop.
Save aprell/11193022 to your computer and use it in GitHub Desktop.
Building cmacro
diff --git a/Makefile b/Makefile
index 98a7141..a20738b 100644
--- a/Makefile
+++ b/Makefile
@@ -43,7 +43,13 @@ buildapp: $(BUILD)/buildapp ;
$(BUILD)/.reqs:
@echo "Downloading requirements"
- $(LISP_QL) --eval '(ql:quickload :$(NAME))' --quit
+ $(LISP_QL) --eval '(ql:quickload :$(NAME))' \
+ --eval '(ql:quickload :split-sequence)' \
+ --eval '(ql:quickload :anaphora)' \
+ --eval '(ql:quickload :alexandria)' \
+ --eval '(ql:quickload :trivial-shell)' \
+ --eval '(ql:quickload :cl-mustache)' \
+ --eval '(ql:quickload :yason)' --quit
git clone $(ASDF_LINGUIST_URL) $(ASDF_LINGUIST)
touch $@
diff --git a/src/error.lisp b/src/error.lisp
index d358f1f..ca1c555 100644
--- a/src/error.lisp
+++ b/src/error.lisp
@@ -44,4 +44,4 @@
((command :initarg :command :reader command))
(:report (lambda (condition stream)
- (format "Unknown template command '~A'." (command condition)))))
+ (format stream "Unknown template command '~A'." (command condition)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment