Skip to content

Commit b525fbe

Browse files
committed
No need for -R options, _CoqProject contains them already
1 parent e7b938f commit b525fbe

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

coq

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
#!/bin/sh
2-
# Start coqide with the right -I options
2+
# Start coqide with the right options
33
# Use the Makefile to rebuild dependencies if needed
44
# Recompile the modified file after coqide editing
55

6-
INCLUDES=`make print-includes`
7-
86
make -q ${1}o || {
97
make -n ${1}o | grep -v "\\b${1}\\b" | \
108
(while read cmd; do
119
sh -c "$cmd" || exit 2
1210
done)
1311
}
1412

15-
"${COQBIN}coqide" -async-proofs off $INCLUDES $1 && make ${1}o
13+
"${COQBIN}coqide" -async-proofs off $1 && make ${1}o

0 commit comments

Comments
 (0)