about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2013-01-17 10:17:29 +0000
committerEric Wong <normalperson@yhbt.net>2013-01-17 10:18:50 +0000
commit5eaec3184b49d3c1068b1f011e7afe43b33dd2d5 (patch)
tree228444e5b888178e72e63a9e13d07b299e42b2a5
parenta12d2e64e04b5098f31e63a72ea8330b6c8f3a19 (diff)
downloadrainbows-5eaec3184b49d3c1068b1f011e7afe43b33dd2d5.tar.gz
The missing random_blob dependency was causing the following
to fail on a fresh clone:

	make -C t ThreadPool.t0005-large-file-response.sh
-rw-r--r--t/GNUmakefile4
1 files changed, 1 insertions, 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 ., ,$@))