From: Dmitry Selyutin Date: Wed, 13 Sep 2017 19:17:26 +0000 (+0300) Subject: config: normalize file system paths X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=7c8c79433a47f2096315beea29ce5daf62edf938;p=gnulib.git config: normalize file system paths --- diff --git a/pygnulib/config.py b/pygnulib/config.py index 15dba6e80d..cb17363dbb 100644 --- a/pygnulib/config.py +++ b/pygnulib/config.py @@ -406,6 +406,8 @@ class Base: value = set(seq) elif key == "lgpl" and value not in (0, 2, 3): raise ValueError("lgpl: None, 2 or 3 expected") + elif key.endswith("_base"): + value = _os_.path.normpath(value) self.__table[key] = value