From: Jens Axboe Date: Sun, 20 Mar 2016 15:38:57 +0000 (-0600) Subject: gen-rand: fix dependency on strcasestr.o X-Git-Tag: fio-2.9~25 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=e91ba49acb8ff9f2e82046fec4f42b790e8644b1 gen-rand: fix dependency on strcasestr.o Fails on systems where we have to pull that in (eg Windows). Signed-off-by: Jens Axboe --- diff --git a/Makefile b/Makefile index a2502dcd..749a5080 100644 --- a/Makefile +++ b/Makefile @@ -212,7 +212,8 @@ T_LFSR_TEST_OBJS += lib/lfsr.o gettime.o t/log.o t/debug.o t/arch.o T_LFSR_TEST_PROGS = t/lfsr-test T_GEN_RAND_OBJS = t/gen-rand.o -T_GEN_RAND_OBJS += t/log.o t/debug.o lib/rand.o lib/pattern.o lib/strntol.o +T_GEN_RAND_OBJS += t/log.o t/debug.o lib/rand.o lib/pattern.o lib/strntol.o \ + oslib/strcasestr.o T_GEN_RAND_PROGS = t/gen-rand ifeq ($(CONFIG_TARGET_OS), Linux)