userland: refix silly mistakes

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-05-05 00:00:00 +00:00
parent 8661d68d71
commit 345343341d
2 changed files with 4 additions and 4 deletions

View File

@@ -69,13 +69,13 @@ Default: build all examples that have their package dependencies met, e.g.:
if in_ext in (self.env['c_ext'], self.env['asm_ext']):
cc = self.env['gcc']
if c_std is None:
std = path_properties.default_c_std
std = path_properties.PathProperties.default_c_std
else:
std = c_std
elif in_ext == self.env['cxx_ext']:
cc = self.env['gxx']
if cxx_std is None:
std = path_properties.default_cxx_std
std = path_properties.PathProperties.default_cxx_std
else:
std = cxx_std
os.makedirs(os.path.dirname(out_path), exist_ok=True)