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

(-)tdebase/starttde (-4 / +5 lines)
Lines 251-264 Link Here
251
# set in $TDEDIRS are intended to override data files found in $TDEDIR. Those additional
251
# set in $TDEDIRS are intended to override data files found in $TDEDIR. Those additional
252
# directories should be placed before $TDEDIR and before /usr/share.
252
# directories should be placed before $TDEDIR and before /usr/share.
253
if [ "$TDEDIR" != "/usr" ] && [ -d $TDEDIR/share ]; then
253
if [ "$TDEDIR" != "/usr" ] && [ -d $TDEDIR/share ]; then
254
  # If '/usr/share' is not already here, we include it at the last position.
254
  # If '/usr/local/share' and '/usr/share' are not already here, we include them at the last position.
255
  if ! is_in_path XDG_DATA_DIRS "/usr/share"; then
255
  if ! is_in_path XDG_DATA_DIRS "/usr/share"; then
256
    XDG_DATA_DIRS=$XDG_DATA_DIRS:/usr/share
256
    XDG_DATA_DIRS=$XDG_DATA_DIRS:/usr/local/share:/usr/share
257
  fi
257
  fi
258
258
259
  # Ensure that $TDEDIR/share is always before '/usr/share'.
259
  # Ensure that $TDEDIR/share is always before '/usr/local/share'. '/usr/local/share'
260
  # should already be in the path and should always be placed before '/usr/share'.
260
  remove_from_path XDG_DATA_DIRS $TDEDIR/share
261
  remove_from_path XDG_DATA_DIRS $TDEDIR/share
261
  place_before_in_path XDG_DATA_DIRS "$TDEDIR/share" "/usr/share"
262
  place_before_in_path XDG_DATA_DIRS "$TDEDIR/share" "/usr/local/share"
262
263
263
  # Adds supplementary directories from TDEDIRS, if any, before TDEDIR.
264
  # Adds supplementary directories from TDEDIRS, if any, before TDEDIR.
264
  if [ "$TDEDIRS" != "" ]; then
265
  if [ "$TDEDIRS" != "" ]; then

Return to bug 2069