Skip to content

Commit

Permalink
slight cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Jul 29, 2015
1 parent 1e309c3 commit 4e3ff80
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/PyCall.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ end

#########################################################################

isfile(joinpath(dirname(@__FILE__), "..", "deps", "deps.jl")) ||
error("PyCall not properly installed. Please run Pkg.build(\"PyCall\")")
include(joinpath(dirname(@__FILE__), "..", "deps", "deps.jl")) # generated by Pkg.build("PyCall")
const depfile = joinpath(dirname(@__FILE__), "..", "deps", "deps.jl")
isfile(depfile) || error("PyCall not properly installed. Please run Pkg.build(\"PyCall\")")
include(depfile) # generated by Pkg.build("PyCall")

macro pysym(func)
:(($func, libpython))
end
Expand Down

0 comments on commit 4e3ff80

Please sign in to comment.