about summary refs log tree commit homepage
path: root/local.mk.sample
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-24 10:28:13 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-24 10:51:45 -0700
commitbd8912c86fc3ef617e72e4cf59fb308dc06563ba (patch)
tree38454a2fc9f6b3520c44db3fed0d49d13cf522ac /local.mk.sample
parentccd4681cdd361f00b86d29e9d1b1ccae0e7d5079 (diff)
downloadrainbows-bd8912c86fc3ef617e72e4cf59fb308dc06563ba.tar.gz
It's more common form for externally-visible/modifiable
variables in Makefiles and shell scripts.
Diffstat (limited to 'local.mk.sample')
-rw-r--r--local.mk.sample4
1 files changed, 2 insertions, 2 deletions
diff --git a/local.mk.sample b/local.mk.sample
index da181b6..59a8e6a 100644
--- a/local.mk.sample
+++ b/local.mk.sample
@@ -10,11 +10,11 @@ gems := rev-0.3.1 rack-1.0.0 iobuffer-0.1.1
 # Avoid loading rubygems to speed up tests because gmake is
 # fork+exec heavy with Ruby.
 ifeq ($(r19),)
-  ruby := $(HOME)/bin/ruby
+  RUBY := $(HOME)/bin/ruby
   gem_paths := $(addprefix $(HOME)/lib/ruby/gems/1.8/gems/,$(gems))
 else
   export PATH := $(HOME)/ruby-1.9/bin:$(PATH)
-  ruby := $(HOME)/ruby-1.9/bin/ruby --disable-gems
+  RUBY := $(HOME)/ruby-1.9/bin/ruby --disable-gems
   gems := $(gems) case-0.5 revactor-0.1.4
   gem_paths := $(addprefix $(HOME)/ruby-1.9/lib/ruby/gems/1.9.1/gems/,$(gems))
 endif