about summary refs log tree commit homepage
path: root/local.mk.sample
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-12-21 12:41:38 -0800
committerEric Wong <normalperson@yhbt.net>2009-12-21 12:41:38 -0800
commited8ef914756d61d47da23aecfc58c4d65739236b (patch)
treed70d2624885104bf67199611b5045c2a11e53337 /local.mk.sample
parentd1c5847f74bad4969a0324dc47f0c7a59e72fa8c (diff)
downloadunicorn-ed8ef914756d61d47da23aecfc58c4d65739236b.tar.gz
It should be more compatible and easier to express that they're
overridable to hackers.  We keep the lower-case versions around
in case people depend on them.
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 1746320..c2054ce 100644
--- a/local.mk.sample
+++ b/local.mk.sample
@@ -11,12 +11,12 @@ gems := rack-1.0.1
 # fork+exec heavy with Ruby.
 prefix = $(HOME)
 ifeq ($(r19),)
-  ruby := $(prefix)/bin/ruby
+  RUBY := $(prefix)/bin/ruby
   gem_paths := $(addprefix $(prefix)/lib/ruby/gems/1.8/gems/,$(gems))
 else
   prefix := $(prefix)/ruby-1.9
   export PATH := $(prefix)/bin:$(PATH)
-  ruby := $(prefix)/bin/ruby --disable-gems
+  RUBY := $(prefix)/bin/ruby --disable-gems
   gem_paths := $(addprefix $(prefix)/lib/ruby/gems/1.9.1/gems/,$(gems))
 endif