about summary refs log tree commit homepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2013-10-19 23:57:22 +0000
committerEric Wong <normalperson@yhbt.net>2013-10-20 00:09:04 +0000
commit04b664092b02e021a6b43f1869fe0ed2efc12dd8 (patch)
treec4f753ca1819db8ec608ea1a8e0f54e7873a81a5 /GNUmakefile
parenta108236d619c950add6d5a8331450180a506c6ea (diff)
downloadyahns-04b664092b02e021a6b43f1869fe0ed2efc12dd8.tar.gz
openssl warns about an unused variable
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 36fd8a4..97f68d5 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -12,11 +12,11 @@ all:: test
 test_units := $(wildcard test/test_*.rb)
 test: $(test_units)
 $(test_units):
-        $(RUBY) -w -I $(lib) $@ -v
+        $(RUBY) -I $(lib) $@ -v
 
 test-mt: export N = $(shell nproc 2>/dev/null || echo 4)
 test-mt:
-        $(RUBY) -w -I $(lib) $(addprefix -r./,$(test_units)) -eTime.now --
+        $(RUBY) -I $(lib) $(addprefix -r./,$(test_units)) -eTime.now --
 
 check-warnings:
         @(for i in $$(git ls-files '*.rb'| grep -v '^setup\.rb$$'); \