We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f22935b commit cc0e884Copy full SHA for cc0e884
2 files changed
Makefile
@@ -406,7 +406,7 @@ clean-lean: rm-lean
406
407
.PHONY: rm-lean
408
rm-lean:
409
- if test -d $(ROOT_PATH); then find $(ROOT_PATH) -maxdepth 1 -name '*.lean' $(LEANFILES:%=-a ! -name $(ROOT_PATH)/%) -delete; fi
+ if test -d $(ROOT_PATH); then find $(ROOT_PATH) -maxdepth 1 -name '*.lean' $(LEANFILES:%=-a ! -path $(ROOT_PATH)/%) -delete; fi
410
411
$(ROOT_PATH).lean:
412
ifneq ($(SET_STI_FILES),1)
config
@@ -170,9 +170,9 @@ then
170
echo create deps.mk ...
171
rm -f deps.mk
172
touch deps.mk
173
- set $base_rocqfiles
174
- if test $# -gt 0
+ if test -n "$base_rocqfiles"
175
then
+ set $base_rocqfiles
176
echo -n ${1}o >> deps.mk
177
shift
178
for f in $*
0 commit comments