Makefile: Fix *_IMAGE targets.
So that the rebuild the image instead of using the existing one.
This commit is contained in:
parent
80bd6a3d83
commit
a48eda1931
4
Makefile
4
Makefile
|
@ -328,7 +328,7 @@ $(QCOW_IMAGE): image
|
|||
|
||||
qcow: $(QCOW_IMAGE)
|
||||
|
||||
$(XVA_IMAGE): $(RAW_IMAGE)
|
||||
$(XVA_IMAGE): image
|
||||
@./echo Creating $(XVA_IMAGE)
|
||||
xva.py --disk=$(RAW_IMAGE) --is-hvm --memory=256 --vcpus=1 --name=$(APPLIANCE) \
|
||||
--filename=$(XVA_IMAGE)
|
||||
|
@ -336,7 +336,7 @@ $(XVA_IMAGE): $(RAW_IMAGE)
|
|||
xva: $(XVA_IMAGE)
|
||||
|
||||
|
||||
$(VMDK_IMAGE): $(RAW_IMAGE)
|
||||
$(VMDK_IMAGE): image
|
||||
@./echo Creating $(VMDK_IMAGE)
|
||||
qemu-img convert -f raw -O vmdk $(RAW_IMAGE) $(VMDK_IMAGE)
|
||||
|
||||
|
|
Loading…
Reference in New Issue