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 2255
Collapse All | Expand All

(-)tdebase/r14-xdg-update (-1 / +8 lines)
Lines 3-9 Link Here
3
# A script to perform R14.0.0 XDG compliance updates.
3
# A script to perform R14.0.0 XDG compliance updates.
4
4
5
SCRIPT_NAME="`basename \`readlink -f $0\``"
5
SCRIPT_NAME="`basename \`readlink -f $0\``"
6
SCRIPT_VERSION=201412270
6
SCRIPT_VERSION=201501260
7
7
8
# This script should be needed to run only once, but corner cases
8
# This script should be needed to run only once, but corner cases
9
# and file/directory permissions could cause incomplete updates.
9
# and file/directory permissions could cause incomplete updates.
Lines 947-952 Link Here
947
  fi
947
  fi
948
fi
948
fi
949
949
950
if [ "$R14_VERSION" -lt "201501260" ]; then
951
  if [ -f $PROFILE_DIR/share/apps/kalarm/calendar.ics ]; then
952
    Log "Updating kalarm calendar"
953
    sed -i 's|X-KDE|X-TDE|g' $PROFILE_DIR/share/apps/kalarm/calendar.ics 2>/dev/null
954
  fi
955
fi
956
950
# Perform some nominal update validations.
957
# Perform some nominal update validations.
951
# First clean house from any previous failures.
958
# First clean house from any previous failures.
952
if [ "$CACHE_DIR" = "" ]; then
959
if [ "$CACHE_DIR" = "" ]; then

Return to bug 2255