From: Anthony Liguori Date: Sat, 17 Nov 2012 13:40:47 +0000 (-0600) Subject: rng-random: only build on POSIX platforms X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e75fce6cda8cd515645e0bd16ed4ef6260d777c7;p=qemu.git rng-random: only build on POSIX platforms There is no /dev/random on win32. Cc: Stefan Weil Signed-off-by: Anthony Liguori --- diff --git a/backends/Makefile.objs b/backends/Makefile.objs index 875eebce6a..883676106b 100644 --- a/backends/Makefile.objs +++ b/backends/Makefile.objs @@ -1 +1,2 @@ -common-obj-y += rng.o rng-random.o rng-egd.o +common-obj-y += rng.o rng-egd.o +common-obj-$(CONFIG_POSIX) += rng-random.o