From 78040bdf5089b66c3f0db643425c7760d71c29ec Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: [PATCH] Make 'check-manifest' work with HG. --- Makefile.in | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile.in b/Makefile.in index 6a9b918..0aaed4e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -112,11 +112,7 @@ dist: ls -l $(PACKAGE)-$(VERSION).tar.gz check-manifest: - @for d in `find -type d -name CVS`; do \ - b=`dirname $$d`/; \ - awk -F/ '$$1 != "D" {print $$2}' $$d/Entries | \ - sed -e "s|^|$$b|" -e "s|^\./||"; \ - done | sort > .check-manifest; \ + hg manifest | sort > .check-manifest; \ sort MANIFEST > .orig-manifest; \ diff -u .orig-manifest .check-manifest; rv=$$?; \ rm -f .orig-manifest .check-manifest; \ -- 1.8.3.1