summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rebar_port_compiler.erl5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rebar_port_compiler.erl b/src/rebar_port_compiler.erl
index 7af45eb..57253e0 100644
--- a/src/rebar_port_compiler.erl
+++ b/src/rebar_port_compiler.erl
@@ -495,10 +495,9 @@ expand_command(TmplName, Env, InFiles, OutFile) ->
%%
%% Given a string, determine if it is expandable
-%% A string is defined as expandable if it contains itself
-%% (eg. CFLAGS = -m64 $CFLAGS)
+%%
is_expandable(InStr) ->
- case re:run(InStr,"\\\$"++InStr,[{capture,none}]) of
+ case re:run(InStr,"\\\$",[{capture,none}]) of
match -> true;
nomatch -> false
end.