diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2011-01-21 11:22:38 +0100 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2011-01-21 11:22:38 +0100 |
commit | 624305e0a92647262aaaeccba2f57eadf8898a12 (patch) | |
tree | 8a9a22cc6a6d92a131d09359db01d4f96e0df9ff | |
parent | 473feae00ab01ccab808ef9f83588303e7d83704 (diff) |
Makefile fixes: hack to fix \ndash, remove backup files
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -6,3 +6,7 @@ fripost-web: $(EMACS) -batch -L . \ -l "fripost-web.el" \ -eval "(org-publish-project \"fripost-web\")" + # UGLY HACK + find publish -iname "*.html" -exec perl -pi -e 's!\\ndash!–!' {} \; + # Remove Emacs backup files + find publish -name "*~" -delete |