X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile;h=52bc080ecea4e36a7678cc57bb9c4380ebf8f9d0;hb=2155961538599ae8372b6aaadb074c13db10eaea;hp=d250b867c6fceeaf31e6900a21eea62e4f10ace1;hpb=3bbcbfe8c8a210aab420a97e1b0d2c9d75b0fd39;p=virt-p2v.git diff --git a/Makefile b/Makefile index d250b86..52bc080 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,7 @@ # General configuration PACKAGE := virt-p2v -VERSION := 0.8 +VERSION := 0.9 # i386 images also work on x86-64, so best to stick with i386. ARCH := i386 @@ -136,12 +136,7 @@ dist: ls -l $(PACKAGE)-$(VERSION).tar.gz check-manifest: - @for d in `find -type d -name CVS | grep -v '^\./debian/'`; \ - 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; \