We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 625f3a8 commit 43e3f54Copy full SHA for 43e3f54
Makefile.coq.local
@@ -1,8 +1,8 @@
1
pre-all::
2
if command -v coqc > /dev/null && (coqc --version | grep -q '8.18\|8.19\|8.20') ; then \
3
for f in $(shell grep "From Corelib" $$(find . -name "*.v") | cut -d: -f1) ; do \
4
- sed -i.bak 's/From Corelib/From Coq/' $${f} ; \
5
- sed -i.bak 's/PosDef/PArith/' $${f} ; \
+ sed -i.bak $${f} -e 's/From Corelib/From Coq/' ; \
+ sed -i.bak $${f} -e 's/PosDef/PArith/' ; \
6
$(RM) $${f}.bak ; \
7
done ; \
8
fi
0 commit comments