diff options
Diffstat (limited to 'src/compare.mk.in')
-rw-r--r-- | src/compare.mk.in | 6 |
1 files changed, 4 insertions, 2 deletions
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 ; \ |