Skip to content

Commit

Permalink
Dependencies: fix improper filtering of system modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Maratyszcza committed Nov 10, 2015
1 parent 2294d4c commit 6fb7df1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion peachpy/x86_64/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ def main():
# PeachPy sources can import other modules or files from the same directory
import os
sys.path.append(os.path.dirname(options.input[0]))
include_directories = [os.path.dirname(options.input[0])]
include_directories = [os.path.abspath(os.path.dirname(options.input[0]))]

# We would like to avoid situations where source file has changed, but Python uses its old precompiled version
sys.dont_write_bytecode = True
Expand Down

0 comments on commit 6fb7df1

Please sign in to comment.