diff options
author | Fabien Tassin <fta@sofaraway.org> | 2008-01-29 16:55:30 +0100 |
---|---|---|
committer | Fabien Tassin <fta@sofaraway.org> | 2008-01-29 16:55:30 +0100 |
commit | 112dc6827200bf142e70344404f1a47c9fda0182 (patch) | |
tree | 11f00441ccfe0696eb2a78410aad9a805b46ceee /src/compare.mk.in | |
parent | 09326323400f82de87d041b89e3eec5b580c129c (diff) |
* Make compare less verbose
- update src/compare.mk.in
Diffstat (limited to 'src/compare.mk.in')
-rw-r--r-- | src/compare.mk.in | 10 |
1 files 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" |