diff options
-rwxr-xr-x | bin/repoman | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/repoman b/bin/repoman index 783b4fb79..c921234fd 100755 --- a/bin/repoman +++ b/bin/repoman @@ -813,7 +813,8 @@ if isCvs: "RMD160" not in portage.checksum.hashorigin_map: from portage.util import grablines repo_lines = grablines("./CVS/Repository") - if repo_lines and repo_lines[0].startswith("gentoo-x86/"): + if repo_lines and \ + "gentoo-x86" == repo_lines[0].strip().split(os.path.sep)[0]: msg = "Please install " \ "pycrypto or enable python's ssl USE flag in order " \ "to enable RMD160 hash support. See bug #198398 for " \ |