From e75fce6cda8cd515645e0bd16ed4ef6260d777c7 Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Sat, 17 Nov 2012 07:40:47 -0600 Subject: rng-random: only build on POSIX platforms There is no /dev/random on win32. Cc: Stefan Weil Signed-off-by: Anthony Liguori --- backends/Makefile.objs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'backends') 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 -- cgit v1.2.1