aboutsummaryrefslogtreecommitdiff
path: root/compilers.py
diff options
context:
space:
mode:
Diffstat (limited to 'compilers.py')
-rw-r--r--compilers.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/compilers.py b/compilers.py
index 24853e1..df8fc2f 100644
--- a/compilers.py
+++ b/compilers.py
@@ -202,6 +202,8 @@ class CCompiler():
return []
def get_include_args(self, path):
+ if path == '':
+ path = '.'
return ['-I' + path]
def get_std_shared_lib_link_args(self):