From af5cd7aa2fc97acf626c6bfcab4aa33b5d1ab440 Mon Sep 17 00:00:00 2001 From: Fabien Tassin Date: Wed, 4 Jun 2008 15:15:49 +0200 Subject: * [compare] Add build-tree/dist to the list of directories for compare1 - update src/compare.mk.in --- src/compare.mk.in | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/compare.mk.in b/src/compare.mk.in index 29cb628..8cba960 100644 --- a/src/compare.mk.in +++ b/src/compare.mk.in @@ -46,10 +46,12 @@ compare: @if [ "Z${COMPARE_FILTER_PRE_IN}Z" = "ZZ" ] ; then \ echo "## Can't compare dist/bin and debian/tmp (no COMPARE_FILTER_PRE_IN filter defined)" ; \ else \ - if [ -d mozilla ] ; then \ + if [ -d mozilla/dist ] ; then \ find mozilla/dist/bin \! -type d | cut -d/ -f4- | $(COMPARE_FILTER_PRE_IN) | sort > $(LIST_BUILT) ; \ - elif [ -d build-tree/mozilla ] ; then \ + elif [ -d build-tree/mozilla/dist ] ; then \ find build-tree/mozilla/dist/bin \! -type d | cut -d/ -f5- | $(COMPARE_FILTER_PRE_IN) | sort > $(LIST_BUILT) ; \ + elif [ -d build-tree/dist ] ; then \ + find build-tree/dist/bin \! -type d | cut -d/ -f4- | $(COMPARE_FILTER_PRE_IN) | sort > $(LIST_BUILT) ; \ elif [ -d dist ] ; then \ find dist/bin \! -type d | cut -d/ -f3- | $(COMPARE_FILTER_PRE_IN) | sort > $(LIST_BUILT) ; \ fi ; \ -- cgit v1.2.1