about summary refs log tree commit homepage
path: root/local.mk.sample
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-10-22 15:31:47 -0700
committerEric Wong <normalperson@yhbt.net>2010-10-22 15:31:47 -0700
commit41145ed4d335718ac43aec9313b7571a12fe96ee (patch)
treee2949c61b54112dab2b5b3c31ca92efc0436db01 /local.mk.sample
parentb595ad7333ff85452b229674c6726e40d2cf7bb9 (diff)
downloadrainbows-41145ed4d335718ac43aec9313b7571a12fe96ee.tar.gz
Ruby 1.9.2 has been out for a while and is the stable
release nowadays.
Diffstat (limited to 'local.mk.sample')
-rw-r--r--local.mk.sample14
1 files changed, 3 insertions, 11 deletions
diff --git a/local.mk.sample b/local.mk.sample
index 5b1e025..802ca63 100644
--- a/local.mk.sample
+++ b/local.mk.sample
@@ -17,13 +17,7 @@ DLEXT := so
 prefix = $(HOME)
 
 ifeq ($(r192),)
-  ifeq ($(r19),)
-    RUBY := $(prefix)/bin/ruby
-  else
-    prefix := $(prefix)/ruby-1.9
-    export PATH := $(prefix)/bin:$(PATH)
-    RUBY := $(prefix)/bin/ruby --disable-gems
-  endif
+  RUBY := $(prefix)/bin/ruby
 else
   prefix := $(prefix)/ruby-1.9.2
   export PATH := $(prefix)/bin:$(PATH)
@@ -36,12 +30,10 @@ SHELL := /bin/ksh93 -e -o pipefail
 
 # trace execution of tests
 # TRACER = strace -f -o $(t_pfx).strace -s 100000
-TRACER = /usr/bin/time -v -o $(t_pfx).time
+# TRACER = /usr/bin/time -v -o $(t_pfx).time
 
-full-test: test-18 test-191 test-192
+full-test: test-18 test-192
 test-18:
         $(MAKE) test 2>&1 | sed -e 's!^!1.8 !'
-test-191:
-        $(MAKE) test r19=T 2>&1 | sed -e 's!^!1.9.1 !'
 test-192:
         $(MAKE) test r192=T 2>&1 | sed -e 's!^!1.9.2 !'