Skip to content

Commit

Permalink
fix UndefVarError: include not defined on 0.7
Browse files Browse the repository at this point in the history
and a warning for eval
  • Loading branch information
visr committed Jul 8, 2018
1 parent 59a3213 commit b23f7e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ for elem in dependencies
# it's a bit faster to run the build in an anonymous module instead of
# starting a new julia process
m = Module(:__anon__)
eval(m, :(include($(joinpath(@__DIR__, elem)))))
Core.eval(m, :(Main.include($(joinpath(@__DIR__, elem)))))
end

# Parse some basic command-line arguments
Expand Down

0 comments on commit b23f7e3

Please sign in to comment.