summaryrefslogtreecommitdiff
path: root/src/rebar_port_compiler.erl
diff options
context:
space:
mode:
authorRyan Tilder <rtilder@basho.com>2010-02-10 11:23:53 -0800
committerRyan Tilder <rtilder@basho.com>2010-02-10 11:23:53 -0800
commitf502bb09dd041cdc8a524e82c482e820c169fa65 (patch)
tree55c55c31144d8a7afc3da8d84c3840e284162e94 /src/rebar_port_compiler.erl
parent268405d0dc49d6a0a2d0ea41014b045b3ff26eb0 (diff)
I'm a moron. Make it a string.
Diffstat (limited to 'src/rebar_port_compiler.erl')
-rw-r--r--src/rebar_port_compiler.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_port_compiler.erl b/src/rebar_port_compiler.erl
index 2f419c9..3cc8fc1 100644
--- a/src/rebar_port_compiler.erl
+++ b/src/rebar_port_compiler.erl
@@ -254,7 +254,7 @@ default_env() ->
" "])},
{"DRIVER_LDFLAGS", lists:concat([" -L", code:lib_dir(erl_interface, lib),
" -lerl_interface -lei"])},
- {"ERLANG_ARCH", 8 * erlang:system_info(wordsize)},
+ {"ERLANG_ARCH", integer_to_list(8 * erlang:system_info(wordsize))},
{"ERLANG_TARGET", erlang:system_info(system_architecture)}].