Skip to content

Commit

Permalink
Allow to prefix the entire build
Browse files Browse the repository at this point in the history
By setting an environment variable PREFIX to the
rake call, you can tell build-couchdb to build
couchdb and all its dependencies (erlang, trace-
monkey) to a custom location.
  • Loading branch information
Sebastian Cohnen committed Aug 12, 2010
1 parent 7a7671f commit e352acd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/places.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
DEPS = "#{HERE}/dependencies"
BUILD = "#{HERE}/build"
BUILD = ENV['prefix'] || "#{HERE}/build"
JS_LIB = "#{BUILD}/bin/js-config"
ERL_BIN = "#{BUILD}/bin/erl"
ICU_BIN = "#{BUILD}/bin/icu-config"
Expand Down

0 comments on commit e352acd

Please sign in to comment.