From c55749d9989cf472cebc0bc93ccfa5edff0f67a8 Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Mon, 23 Mar 2015 16:14:19 -0700 Subject: config: expand '~' and '~user' in paths --- configs/common/SysPaths.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'configs/common') diff --git a/configs/common/SysPaths.py b/configs/common/SysPaths.py index 08d40bba4..316fd0399 100644 --- a/configs/common/SysPaths.py +++ b/configs/common/SysPaths.py @@ -27,7 +27,7 @@ # Authors: Ali Saidi import os, sys -from os.path import isdir, join as joinpath +from os.path import join as joinpath from os import environ as env config_path = os.path.dirname(os.path.abspath(__file__)) @@ -59,6 +59,9 @@ def system(): except KeyError: path = [ '/dist/m5/system', '/n/poolfs/z/dist/m5/system' ] + # expand '~' and '~user' in paths + path = map(os.path.expanduser, path) + # filter out non-existent directories system.path = filter(os.path.isdir, path) -- cgit v1.2.3