From f502bb09dd041cdc8a524e82c482e820c169fa65 Mon Sep 17 00:00:00 2001 From: Ryan Tilder Date: Wed, 10 Feb 2010 11:23:53 -0800 Subject: [PATCH] I'm a moron. Make it a string. --- src/rebar_port_compiler.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)}].