Hide Forgot
Description of problem: kde-runtime-4.8.0-2.fc17 has the following line in its package script: if [ `getsebool deny_ptrace 2>/dev/null` == 'deny_ptrace --> on' ] ; then This is broken becaus if 'getsebool' invocation will result in an empty string then you will see: ... line 7: [: ==: unary operator expected A correct test looks like: [ "`getsebool deny_ptrace 2>/dev/null`" == 'deny_ptrace --> on' ] Version-Release number of selected component (if applicable): kde-runtime-4.8.0-2.fc17 How reproducible: always is selinux is not active
Fixed in kde-runtime-4.8.0-4.fc17 and kde-runtime-4.8.0-4.fc18. (Branching is not complete yet, so we don't have to go through the update system yet, it seems.) Thanks for the report and sorry for the screwup.