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 (-2 / +2 lines)
Lines 25-31 Link Here
25
# To determine that location use the following method rather than presuming
25
# To determine that location use the following method rather than presuming
26
# the existence of $KDEDIR. That environment variable might not be
26
# the existence of $KDEDIR. That environment variable might not be
27
# defined or defined to point to KDE4 binaries.
27
# defined or defined to point to KDE4 binaries.
28
BIN_DIR="`dirname $0`"
28
BIN_DIR="`dirname \`readlink -f $0\``"
29
# Do not use kde-config to determine the version. That command creates a
29
# Do not use kde-config to determine the version. That command creates a
30
# profile directory in the root of the file system. Refer to Bug Report 293.
30
# profile directory in the root of the file system. Refer to Bug Report 293.
31
if [ -x $BIN_DIR/konqueror ]; then
31
if [ -x $BIN_DIR/konqueror ]; then
Lines 77-83 Link Here
77
fi
77
fi
78
78
79
# In case we have been started with full pathname spec without being in PATH.
79
# In case we have been started with full pathname spec without being in PATH.
80
bindir=`echo "$0" | sed -n 's,^\(/.*\)/[^/][^/]*$,\1,p'`
80
bindir=`readlink -f "$0" | sed -n 's,^\(/.*\)/[^/][^/]*$,\1,p'`
81
if [ -n "$bindir" ]; then
81
if [ -n "$bindir" ]; then
82
  case $PATH in
82
  case $PATH in
83
    $bindir|$bindir:*|*:$bindir|*:$bindir:*) ;;
83
    $bindir|$bindir:*|*:$bindir|*:$bindir:*) ;;

Return to bug 675