By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 675
Collapse All | Expand All

(-)a/startkde (-1 / +1 lines)
Lines 66-72 Link Here
66
# Check whether prelinking is enabled. If so, exporting KDE_IS_PRELINKED improves
66
# Check whether prelinking is enabled. If so, exporting KDE_IS_PRELINKED improves
67
# loading TDE. The $KDE_IS_PRELINKED variable might already be set on some systems
67
# loading TDE. The $KDE_IS_PRELINKED variable might already be set on some systems
68
# through /etc/profile.d, so first check whether the variable exists.
68
# through /etc/profile.d, so first check whether the variable exists.
69
if [ $KDE_IS_PRELINKED = "" ]; then
69
if [ "$KDE_IS_PRELINKED" = "" ]; then
70
  if [ -r /etc/default/prelink ]; then
70
  if [ -r /etc/default/prelink ]; then
71
    . /etc/default/prelink
71
    . /etc/default/prelink
72
    if [ "$PRELINKING" == "yes" ]; then
72
    if [ "$PRELINKING" == "yes" ]; then

Return to bug 675