From 638b7478a001ccde8418c9a2a5d7e253c0df0678 Mon Sep 17 00:00:00 2001 From: "Aaron W. Swenson" Date: Tue, 5 Sep 2017 10:15:07 -0400 Subject: Use Simple Sort Calling external commands during metadata regen is forbidden by PMS and breaks new secure cache regen. Use a simple sort instead. Gentoo-Bug: 629226 --- postgres-multi.eclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'postgres-multi.eclass') diff --git a/postgres-multi.eclass b/postgres-multi.eclass index 5d40a0e..9eb7ca2 100644 --- a/postgres-multi.eclass +++ b/postgres-multi.eclass @@ -105,7 +105,8 @@ postgres-multi_forbest() { postgres-multi_pkg_setup() { local user_slot - for user_slot in "${POSTGRES_COMPAT[@]}"; do + # _POSTGRES_COMPAT is created in postgres.eclass + for user_slot in "${_POSTGRES_COMPAT[@]}"; do use "postgres_targets_postgres${user_slot/\./_}" && \ _POSTGRES_INTERSECT_SLOTS+=( "${user_slot}" ) done -- cgit v1.2.3-65-gdbad