Browse Source

- archives-info: don't check subdirs in $(ARCHIVE) directory

master
vanhofen 7 years ago
parent
commit
47a11efc4d
  1. 2
      make/prerequisites.mk

2
make/prerequisites.mk

@ -127,7 +127,7 @@ archives-info: archives-list
fi; \
done;
@echo "[ ** ] Unused archives"
@find $(ARCHIVE)/ -type f | \
@find $(ARCHIVE)/ -maxdepth 1 -type f | \
while read archive; do \
if ! grep -q $$archive $(BUILD_TMP)/archives-list; then \
echo -e "[$(TERM_YELLOW) rm $(TERM_NORMAL)] $$archive"; \

Loading…
Cancel
Save