Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/util/
Date: Tue, 04 Aug 2020 01:39:24
Message-Id: 1596503307.86b9c28c6abb7193fb39fef1fe7620fc2d0bab72.zmedico@gentoo
1 commit: 86b9c28c6abb7193fb39fef1fe7620fc2d0bab72
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 4 00:16:18 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 4 01:08:27 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=86b9c28c
7
8 lib/portage/util/env_update.py: fix unnecessary-semicolon
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
12
13 lib/portage/util/env_update.py | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/lib/portage/util/env_update.py b/lib/portage/util/env_update.py
17 index 9c6fe3cdd..7a2ee2551 100644
18 --- a/lib/portage/util/env_update.py
19 +++ b/lib/portage/util/env_update.py
20 @@ -213,7 +213,7 @@ def _env_update(makelinks, target_root, prev_mtimes, contents, env,
21 newprelink.write("# contents of /etc/env.d directory\n")
22
23 for x in sorted(potential_lib_dirs) + ['bin', 'sbin']:
24 - newprelink.write('-l /%s\n' % (x,));
25 + newprelink.write('-l /%s\n' % (x,))
26 prelink_paths = set()
27 prelink_paths |= set(specials.get('LDPATH', []))
28 prelink_paths |= set(specials.get('PATH', []))