From: Richard W.M. Jones <"Richard W.M. Jones "> Date: Wed, 7 May 2008 07:48:53 +0000 (+0100) Subject: Make 'check-manifest' work with HG. X-Git-Tag: v0.6~47 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=78040bdf5089b66c3f0db643425c7760d71c29ec;p=ocaml-augeas.git Make 'check-manifest' work with HG. --- 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; \