ia64/xen-unstable
changeset 10993:922f8ae451f6
[HVMLOADER] Only install hvmloader if it is built.
This reverts a broken change in changeset 10948 that broke
the ia64 build.
Signed-off-by: Al Stone <ahs3@fc.hp.com>
This reverts a broken change in changeset 10948 that broke
the ia64 build.
Signed-off-by: Al Stone <ahs3@fc.hp.com>
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Tue Aug 08 09:51:08 2006 +0100 (2006-08-08) |
parents | 5f59ac51a7ac |
children | 46df563bf1b8 |
files | tools/firmware/Makefile |
line diff
1.1 --- a/tools/firmware/Makefile Tue Aug 08 09:33:38 2006 +0100 1.2 +++ b/tools/firmware/Makefile Tue Aug 08 09:51:08 2006 +0100 1.3 @@ -30,7 +30,7 @@ all: 1.4 .PHONY: install 1.5 install: all 1.6 [ -d $(INSTALL_DIR) ] || install -d -m0755 $(INSTALL_DIR) 1.7 - install -m0644 $(TARGET) $(INSTALL_DIR) 1.8 + [ ! -e $(TARGET) ] || install -m0644 $(TARGET) $(INSTALL_DIR) 1.9 1.10 .PHONY: clean 1.11 clean: