[PATCH] Tweak "make big" to catch if bigd/ already exists
Trevor Murphy
trevor.m.murphy at gmail.com
Sun Feb 6 18:21:44 CET 2011
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index dec81df..a318d1f 100644
--- a/Makefile
+++ b/Makefile
@@ -45,7 +45,7 @@ elisp: $(ELFILES)
.PHONY: big
big: $(BIGSRC)
- mkdir $(BIGDIR)
+ test -d $(BIGDIR) || mkdir $(BIGDIR)
sed "/(\(provide\|require\|declare-function\) \('\|\)vimpulse-/d" $(BIGSRC) > $(BIGDIR)/vimpulse.el
.SUFFIXES: .el .elc
--
1.7.1
More information about the implementations-list
mailing list