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

(-)/opt/trinity/bin/starttde.ORI (-3 / +5 lines)
Lines 107-115 Link Here
107
if [ "$TDE_IS_PRELINKED" = "" ]; then
107
if [ "$TDE_IS_PRELINKED" = "" ]; then
108
  if [ -r /etc/default/prelink ]; then
108
  if [ -r /etc/default/prelink ]; then
109
    . /etc/default/prelink
109
    . /etc/default/prelink
110
    if [ "$PRELINKING" = "yes" ]; then
110
  elif [ -r /etc/sysconfig/prelink ]; then
111
      export TDE_IS_PRELINKED=1
111
    . /etc/sysconfig/prelink
112
    fi
112
  fi
113
  if [ "$PRELINKING" = "yes" ]; then
114
    export TDE_IS_PRELINKED=1
113
  fi
115
  fi
114
fi
116
fi
115
117

Return to bug 1673