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 --- debian/changelog | 3 +++ src/compare.mk.in | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 84c55e4..3ac8738 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,6 +18,9 @@ mozilla-devscripts (0.09) UNRELEASED; urgency=low taggued mozilla/client.mk - update src/mozclient.pl.in - update src/mozclient/{nspr,nss}.conf + * [ compare ] + + Add build-tree/dist to the list of directories for compare1 + - update src/compare.mk.in -- Fabien Tassin Fri, 30 May 2008 15:36:16 +0200 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.3