Skip to content

Commit 43e3f54

Browse files
authored
Revert "Fix sed commands on MacOS"
1 parent 625f3a8 commit 43e3f54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.coq.local

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
pre-all::
22
if command -v coqc > /dev/null && (coqc --version | grep -q '8.18\|8.19\|8.20') ; then \
33
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} ; \
4+
sed -i.bak $${f} -e 's/From Corelib/From Coq/' ; \
5+
sed -i.bak $${f} -e 's/PosDef/PArith/' ; \
66
$(RM) $${f}.bak ; \
77
done ; \
88
fi

0 commit comments

Comments
 (0)