git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix dangling pointer issues in ext2dr
[lunaix-os.git]
/
lunaix-os
/
scripts
/
build-tools
/
lib
/
utils.py
1
import os
2
3
def join_path(stem, path):
4
if os.path.isabs(path):
5
return path
6
return os.path.join(stem, path)