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

(-)tdebase/doc/userguide/kde-for-admins.docbook (-2 / +2 lines)
Lines 1254-1267 Link Here
1254
</listitem>
1254
</listitem>
1255
</varlistentry>
1255
</varlistentry>
1256
1256
1257
<varlistentry><term>$<envar>KDETMP</envar></term><listitem><para>Allows
1257
<varlistentry><term>$<envar>TDETMP</envar></term><listitem><para>Allows
1258
to specify another path than <filename
1258
to specify another path than <filename
1259
class="directory">/tmp</filename> where &kde; stores its temporary
1259
class="directory">/tmp</filename> where &kde; stores its temporary
1260
files.</para>
1260
files.</para>
1261
</listitem>
1261
</listitem>
1262
</varlistentry>
1262
</varlistentry>
1263
1263
1264
<varlistentry><term>$<envar>KDEVARTMP</envar></term><listitem><para>Allows
1264
<varlistentry><term>$<envar>TDEVARTMP</envar></term><listitem><para>Allows
1265
to specify another path than <filename
1265
to specify another path than <filename
1266
class="directory">/var/tmp</filename> where &kde; stores its variable
1266
class="directory">/var/tmp</filename> where &kde; stores its variable
1267
files.</para>
1267
files.</para>
(-)tdebase/ksmserver/main.cpp (-1 / +1 lines)
Lines 122-128 Link Here
122
  }
122
  }
123
  if (msg.isEmpty())
123
  if (msg.isEmpty())
124
  {
124
  {
125
     path = getenv("KDETMP");
125
     path = getenv("TDETMP");
126
     if (path.isEmpty())
126
     if (path.isEmpty())
127
        path = "/tmp";
127
        path = "/tmp";
128
     if (!writeTest(path))
128
     if (!writeTest(path))
(-)tdebase/starttde (-4 / +4 lines)
Lines 457-466 Link Here
457
457
458
# Link "tmp" "socket" and "cache" resources to directory in /tmp
458
# Link "tmp" "socket" and "cache" resources to directory in /tmp
459
# Creates:
459
# Creates:
460
# - a directory /tmp/kde-$USER and links $TDEHOME/tmp-$HOSTNAME to it.
460
# - a directory $TMP/tde-$USER and is linked from $TDEHOME/tmp-$HOSTNAME to it.
461
# - a directory /tmp/ksocket-$USER and links $TDEHOME/socket-$HOSTNAME to it.
461
# - a directory $TMP/tdesocket-$USER and is linked from $TDEHOME/socket-$HOSTNAME to it.
462
# - a directory /var/tmp/kdecache-$USER and links $TDEHOME/cache-$HOSTNAME to it.
462
# - a directory /var/tmp/tdecache-$USER and is linked from $TDEHOME/cache-$HOSTNAME to it.
463
# Note: temporary locations can be overriden through the KDETMP and KDEVARTMP
463
# Note: temporary locations can be overridden through the TDETMP and TDEVARTMP
464
# environment variables.
464
# environment variables.
465
for resource in tmp cache socket; do
465
for resource in tmp cache socket; do
466
  if ! lnusertemp $resource >/dev/null; then
466
  if ! lnusertemp $resource >/dev/null; then

Return to bug 813