summaryrefslogtreecommitdiff
path: root/firefox.sh.in
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2013-05-23 10:36:23 +0200
committerJan Horak <jhorak@redhat.com>2013-05-23 10:36:23 +0200
commit5cb41cd22bed79a0e2c35b0995aa56fbcf8bb862 (patch)
tree6042e0fe83b105956c58cb285de4d3d31f1a52aa /firefox.sh.in
parentFixed extension compatibility dialog (rhbz#963422) (diff)
downloadlibrewolf-fedora-ff-5cb41cd22bed79a0e2c35b0995aa56fbcf8bb862.tar.gz
librewolf-fedora-ff-5cb41cd22bed79a0e2c35b0995aa56fbcf8bb862.tar.bz2
librewolf-fedora-ff-5cb41cd22bed79a0e2c35b0995aa56fbcf8bb862.zip
Fixed firefox.sh - do not override TMPDIR if set by user
Diffstat (limited to 'firefox.sh.in')
-rw-r--r--firefox.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 06aadbe..81d3cbb 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -144,11 +144,11 @@ GNOME_DISABLE_CRASH_DIALOG=1
export GNOME_DISABLE_CRASH_DIALOG
##
-## Use $MOZ_TMPDIR if set. Otherwise use /var/tmp instead of /tmp
+## Use $TMPDIR if set. Otherwise use /var/tmp instead of /tmp
## because of 1GB /tmp limit in Fedora 18 and later.
## See: https://bugzilla.redhat.com/show_bug.cgi?id=867073
##
-TMPDIR="${MOZ_TMPDIR:-/var/tmp}"
+TMPDIR="${TMPDIR:-/var/tmp}"
export TMPDIR
# OK, here's where all the real work gets done
bgstack15