aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coq/coq.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/coq/coq.el b/coq/coq.el
index 8a88b015..1c7390e6 100644
--- a/coq/coq.el
+++ b/coq/coq.el
@@ -813,8 +813,10 @@ This is specific to `coq-mode'."
(string-match ".v$" filename)) ".vo"))
(command (shell-command-to-string
(concat "cd " dir ";"
- "gmake -n -W " filename " " compiled-file
+ "make -n -W " filename " " compiled-file
"| sed s/coqc/coqtop/"))))
+ (message command)
+ (setq coq-prog-args nil)
(concat
(substring command 0 (string-match " [^ ]*$" command))
(if coq-version-is-V8-1 "-emacs-U" "-emacs")))