From 0b6c0a0531b1ebd83557f88a8280c2c398ecb247 Mon Sep 17 00:00:00 2001 From: Patrick J Volkerding Date: Fri, 9 Apr 2021 20:21:07 +0000 Subject: Fri Apr 9 20:21:07 UTC 2021 a/aaa_libraries-15.0-x86_64-5.txz: Rebuilt. Added: libcares.so.2.4.2. Upgraded: libexpat.so.1.7.0, libglib-2.0.so.0.6800.1, libgmodule-2.0.so.0.6800.1, libgobject-2.0.so.0.6800.1, libgthread-2.0.so.0.6800.1. d/python-setuptools-56.0.0-x86_64-1.txz: Upgraded. kde/kservice-5.80.0-x86_64-2.txz: Rebuilt. In the profile scripts, don't add a directory to the $PATH unless it exists. Thanks to Lockywolf and pghvlaans. l/gdk-pixbuf2-2.42.6-x86_64-1.txz: Upgraded. n/c-ares-1.17.1-x86_64-1.txz: Added. Adding this since curl can make use of it, and some programs expect this functionality. n/curl-7.76.0-x86_64-2.txz: Rebuilt. Recompiled to link with c-ares-1.17.1. Thanks to babydr. xap/mozilla-thunderbird-78.9.1-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/78.9.1/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2021-13/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23991 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-23993 https://www.mozilla.org/en-US/security/advisories/mfsa2021-13/#MOZ-2021-23992 (* Security fix *) xap/pidgin-2.14.3-x86_64-1.txz: Upgraded. --- source/kde/kde/post-install/kservice/profile.d/kde.sh | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'source/kde/kde/post-install/kservice/profile.d/kde.sh') diff --git a/source/kde/kde/post-install/kservice/profile.d/kde.sh b/source/kde/kde/post-install/kservice/profile.d/kde.sh index ec317ad1e..48bf44090 100644 --- a/source/kde/kde/post-install/kservice/profile.d/kde.sh +++ b/source/kde/kde/post-install/kservice/profile.d/kde.sh @@ -2,8 +2,17 @@ # KDE additions: KDEDIRS=/usr export KDEDIRS -PATH="$PATH:/usr/lib/kf5:/usr/lib/kde4/libexec" + +# Add KDE paths if they exist: +if [ -d /usr/lib/kf5 ]; then + PATH="$PATH:/usr/lib/kf5" +fi +if [ -d /usr/lib/kde4/libexec ]; then + PATH="$PATH:/usr/lib/kde4/libexec" +fi export PATH + +# Add /etc/kde/xdg to $XDG_CONFIG_DIRS: if [ ! "$XDG_CONFIG_DIRS" = "" ]; then XDG_CONFIG_DIRS=$XDG_CONFIG_DIRS:/etc/kde/xdg else -- cgit v1.2.3