diff --git a/plasma-workspace.spec b/plasma-workspace.spec index 3ff725f..084dc7a 100644 --- a/plasma-workspace.spec +++ b/plasma-workspace.spec @@ -4,7 +4,7 @@ Name: plasma-workspace Version: 5.3.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Plasma workspace, applications and applets License: GPLv2+ URL: https://projects.kde.org/projects/kde/workspace/plasma-workspace @@ -321,6 +321,9 @@ desktop-file-validate %{buildroot}/%{_datadir}/applications/{plasma-windowed,org %changelog +* Sat Jun 20 2015 Rex Dieter 5.3.1-5 +- shutdown scripts are not executed (#1234059) + * Thu Jun 18 2015 Rex Dieter 5.3.1-4 - startkde.cmake: sync ScaleFactor changes, drop QT_PLUGIN_PATH munging (#1233298) diff --git a/startkde.cmake b/startkde.cmake index 27000ca..6efb06c 100644 --- a/startkde.cmake +++ b/startkde.cmake @@ -314,7 +314,7 @@ echo 'startkde: Running shutdown scripts...' 1>&2 # Run scripts found in /plasma-workspace/shutdown for prefix in `echo "$scriptpath"`; do for file in `ls "$prefix"/shutdown 2> /dev/null | egrep -v '(~|\.bak)$'`; do - test -x "$prefix$file" && "$prefix$file" + test -x "$prefix/shutdown/$file" && "$prefix/shutdown/$file" done done