Fix : Make rojects.py Ãproj-dir return topdir for own project

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2017-04-13 23:17:45 +00:00
commit cacfc76aba

View file

@ -28,6 +28,8 @@ def err(*objs):
print("ERR: ", *objs, file=sys.stderr)
def proj_dir(name):
if name == top_name:
return topdir
return projs_root + '/' + name
def re_section(name):