From 112dc6827200bf142e70344404f1a47c9fda0182 Mon Sep 17 00:00:00 2001 From: Fabien Tassin Date: Tue, 29 Jan 2008 16:55:30 +0100 Subject: * Make compare less verbose - update src/compare.mk.in --- src/compare.mk.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/compare.mk.in b/src/compare.mk.in index 625c0e2..db73a8f 100644 --- a/src/compare.mk.in +++ b/src/compare.mk.in @@ -38,10 +38,10 @@ LIST_IN_DEBS := /tmp/in_debs.$(TEMP) PKG_DIRS = $(addprefix debian/,$(shell grep ^Package debian/control | cut -d' ' -f2)) compare: - @echo "# Compare..." - find debian/tmp -type f | cut -d/ -f3- | $(COMPARE_FILTER_IN) | sort > $(LIST_INSTALLED) - find $(PKG_DIRS) -type f | cut -d/ -f3- | $(COMPARE_FILTER_OUT) | sort > $(LIST_IN_DEBS) - -diff -u $(LIST_INSTALLED) $(LIST_IN_DEBS) | grep -E '^(\+|-).' | tail -n +3 + @echo "## Compare..." + @find debian/tmp -type f | cut -d/ -f3- | $(COMPARE_FILTER_IN) | sort > $(LIST_INSTALLED) + @find $(PKG_DIRS) -type f | cut -d/ -f3- | $(COMPARE_FILTER_OUT) | sort > $(LIST_IN_DEBS) + @-diff -u $(LIST_INSTALLED) $(LIST_IN_DEBS) | grep -E '^(\+|-).' | tail -n +3 @rm -f $(LIST_INSTALLED) $(LIST_IN_DEBS) - @echo "# End" + @echo "## End of Compare" -- cgit v1.2.3