Skip to content

Commit

Permalink
Added a patch for Erlang R14B, there was a auto_import change which c…
Browse files Browse the repository at this point in the history
…auses a break.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
  • Loading branch information
frostbytten authored and adamv committed Sep 26, 2010
1 parent 62ba1fd commit 08bdb50
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Library/Formula/riak.rb
Expand Up @@ -12,6 +12,11 @@ class Riak <Formula
skip_clean 'libexec/data/ring'

depends_on 'erlang'

def patches
# Having issues with the integer_to_list/2 BIF
DATA
end

def install
ENV.deparallelize
Expand All @@ -30,3 +35,18 @@ def install
(prefix + 'data/dets').mkpath
end
end

__END__
diff --git a/apps/riak_core/src/riak_core_util.erl b/apps/riak_core/src/riak_core_util.erl
index 4c5d73c..e03a95a 100644
--- a/apps/riak_core/src/riak_core_util.erl
+++ b/apps/riak_core/src/riak_core_util.erl
@@ -22,7 +22,7 @@

%% @doc Various functions that are useful throughout Riak.
-module(riak_core_util).
-
+-compile({no_auto_import,[integer_to_list/2]}).
-export([moment/0,
make_tmp_dir/0,
compare_dates/2,

0 comments on commit 08bdb50

Please sign in to comment.