Commit ddda90b6 authored by Anton Midyukov's avatar Anton Midyukov

reports.mk: do not abort, if not available rpm cache

parent 27819496
......@@ -110,9 +110,9 @@ reports/packages: reports/prep
@grep -E 'chroot/.in/[^/]*.rpm' < $(BUILDLOG) | \
cut -d' ' -f 1 | tr -d "'"'`' | \
tee /dev/stderr 2> >(sed 's,^.*/,,' | \
sort -u > "$(REPORTDIR)/list-rpms.txt") | \
sort -u > "$(REPORTDIR)/list-rpms.txt") | \
xargs -r rpm -qp --queryformat '%{sourcerpm}\n' | \
sort -u > "$(REPORTDIR)/list-srpms.txt"
sort -u > "$(REPORTDIR)/list-srpms.txt" || :
else
all:; @:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment