X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile;h=bd944e23b4221050344e2395d1dde7c04b10f1e2;hb=8a24000e9c2f3db53c0298936a095503f564b123;hp=d250b867c6fceeaf31e6900a21eea62e4f10ace1;hpb=3bbcbfe8c8a210aab420a97e1b0d2c9d75b0fd39;p=virt-p2v.git diff --git a/Makefile b/Makefile index d250b86..bd944e2 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 @@ -102,9 +102,9 @@ boot: # Update an existing ISO. -update: checkroot - -./update-iso.ml delete $(ISO) - ./update-iso.ml add $(ISO) virt-p2v.ml +update: checkroot checkscript + -./iso-attach delete $(ISO) + ./iso-attach add $(ISO) virt-p2v.ml # Check that we are root. @@ -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; \