Commit df5cf721605327427e4c033f75fd0875486c109f

Authored by ths
1 parent 44cbbf18

Make the tarball's VERSION part overridable from make invocation.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2356 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 2 additions and 1 deletions
Makefile
... ... @@ -128,7 +128,8 @@ dvi: qemu-doc.dvi qemu-tech.dvi
128 128  
129 129 html: qemu-doc.html qemu-tech.html
130 130  
131   -FILE=qemu-$(shell cat VERSION)
  131 +VERSION ?= $(shell cat VERSION)
  132 +FILE = qemu-$(VERSION)
132 133  
133 134 # tar release (use 'make -k tar' on a checkouted tree)
134 135 tar:
... ...