aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaciek Borzecki <maciek.borzecki@gmail.com>2016-02-01 15:54:52 +0100
committerWill Deacon <will.deacon@arm.com>2016-02-01 16:34:34 +0000
commit61bd297671b03e096d50eee85271ee95011a6716 (patch)
treeb9895802fe73afae1288fcdb4e80ed2c4ba8b45e
parent3c8aec9e2b5066412390559629dabeb7816ee8f2 (diff)
downloadkvmtool-61bd297671b03e096d50eee85271ee95011a6716.tar.gz
kvmtool: Makefile: fix indentation of warning stanza
If a static libc is not present in the system the build will fail with make complaining about commands starting before the first target. The patch fixes indentation of a warning about missing static libc, thus fixing the build. Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com> Signed-off-by: Will Deacon <will.deacon@arm.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 59622c30..19eb7e5a 100644
--- a/Makefile
+++ b/Makefile
@@ -291,7 +291,7 @@ ifeq ($(call try-build,$(SOURCE_STATIC),$(CFLAGS),$(LDFLAGS) -static),y)
GUEST_OBJS += guest/guest_pre_init.o
endif
else
- $(warning No static libc found. Skipping guest init)
+$(warning No static libc found. Skipping guest init)
NOTFOUND += static-libc
endif