diff options
Diffstat (limited to 'compilers.py')
-rw-r--r-- | compilers.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compilers.py b/compilers.py index 92437e1..407770f 100644 --- a/compilers.py +++ b/compilers.py @@ -199,6 +199,8 @@ class CCompiler(): return [] def get_include_args(self, path): + if path == '': + path = '.' return ['-I' + path] def get_std_shared_lib_link_args(self): |