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

(-)starttde (-2 / +2 lines)
Lines 171-177 Link Here
171
if [ -d $TDEDIR/share ]; then
171
if [ -d $TDEDIR/share ]; then
172
  if [ -z "`echo $XDG_DATA_DIRS | grep \"$TDEDIR/share\"`" ]; then
172
  if [ -z "`echo $XDG_DATA_DIRS | grep \"$TDEDIR/share\"`" ]; then
173
    if [ "$XDG_DATA_DIRS" = "" ]; then
173
    if [ "$XDG_DATA_DIRS" = "" ]; then
174
      XDG_DATA_DIRS=$TDEDIR/share
174
      XDG_DATA_DIRS=$TDEDIR/share:/usr/share
175
    else
175
    else
176
      XDG_DATA_DIRS=$XDG_DATA_DIRS:$TDEDIR/share
176
      XDG_DATA_DIRS=$XDG_DATA_DIRS:$TDEDIR/share
177
    fi
177
    fi
Lines 181-187 Link Here
181
if [ -d $TDEDIR/etc/xdg ]; then
181
if [ -d $TDEDIR/etc/xdg ]; then
182
  if [ -z "`echo $XDG_CONFIG_DIRS | grep \"$TDEDIR/etc/xdg\"`" ]; then
182
  if [ -z "`echo $XDG_CONFIG_DIRS | grep \"$TDEDIR/etc/xdg\"`" ]; then
183
    if [ "$XDG_CONFIG_DIRS" = "" ]; then
183
    if [ "$XDG_CONFIG_DIRS" = "" ]; then
184
      XDG_CONFIG_DIRS=$TDEDIR/etc/xdg
184
      XDG_CONFIG_DIRS=$TDEDIR/etc/xdg:/etc/xdg
185
    else
185
    else
186
      XDG_CONFIG_DIRS=$XDG_CONFIG_DIRS:$TDEDIR/etc/xdg
186
      XDG_CONFIG_DIRS=$XDG_CONFIG_DIRS:$TDEDIR/etc/xdg
187
    fi
187
    fi

Return to bug 675