From 5eaec3184b49d3c1068b1f011e7afe43b33dd2d5 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Thu, 17 Jan 2013 10:17:29 +0000 Subject: [PATCH] t/GNUmakefile: cleanup test dependencies The missing random_blob dependency was causing the following to fail on a fresh clone: make -C t ThreadPool.t0005-large-file-response.sh --- t/GNUmakefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/t/GNUmakefile b/t/GNUmakefile index 78a4e83..6c9b07b 100644 --- a/t/GNUmakefile +++ b/t/GNUmakefile @@ -103,8 +103,6 @@ random_blob: dd if=/dev/urandom bs=1M count=30 of=$@.$(pid) mv $@.$(pid) $@ -$(T): random_blob - dependencies := socat curl deps := $(addprefix .dep+,$(dependencies)) $(deps): dep_bin = $(lastword $(subst +, ,$@)) @@ -119,7 +117,7 @@ $(libs): test_isolate.rb mkdir -p $(@D) $(RUBY) $< > $@+ mv $@+ $@ -t_deps := $(libs) $(deps) $(bin_rainbows) trash/.gitignore +t_deps := random_blob $(libs) $(deps) $(bin_rainbows) trash/.gitignore $(T): $(t_deps) $(MODEL_T): export model = $(firstword $(subst ., ,$@)) -- 2.11.4.GIT