]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/blob
afce1e1cc202a3e5b239ced0b07c02492478524d
[thirdparty/openembedded/openembedded-core-contrib.git] /
1 Subject: update-alternatives: warn when multiple providers have the same priority
2
3 Upstream-Status: Pending
4
5 Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
6 ---
7 update-alternatives | 3 +++
8 1 file changed, 3 insertions(+)
9
10 diff --git a/update-alternatives b/update-alternatives
11 index ca01d5d..ffad853 100644
12 --- a/update-alternatives
13 +++ b/update-alternatives
14 @@ -90,6 +90,9 @@ add_alt() {
15 local path="$2"
16 local priority="$3"
17 remove_alt $name $path
18 + if grep -qw "$priority" $ad/$name; then
19 + echo "Warn: update-alternatives: $name has multiple providers with the same priority, please check $ad/$name for details"
20 + fi
21 echo "$path $priority" >> $ad/$name
22 }
23
24 --
25 2.8.3
26