From: Richard W.M. Jones Date: Sun, 18 May 2008 16:03:04 +0000 (+0000) Subject: Fix check-manifest rule to work with Subversion. X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=9933133c28d0e307e016ef6ea8028456dd824830;p=ocaml-bitstring.git Fix check-manifest rule to work with Subversion. --- diff --git a/MANIFEST b/MANIFEST index 3a4fe81..a9cea91 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,7 +1,6 @@ aclocal.m4 bitmatch.ml bitmatch.mli -.cvsignore .depend configure.ac COPYING.LIB diff --git a/Makefile.in b/Makefile.in index a36a4d6..fcc1dcc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -131,11 +131,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; \ + svn -R list | grep -v '/$$' | sort > .check-manifest sort MANIFEST > .orig-manifest; \ diff -u .orig-manifest .check-manifest; rv=$$?; \ rm -f .orig-manifest .check-manifest; \