summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@fedoraproject.org>2007-03-12 16:40:52 +0000
committerChristopher Aillon <caillon@fedoraproject.org>2007-03-12 16:40:52 +0000
commit89a39c8164383b907e146caa5ea9047fff6aca97 (patch)
tree24ea778c3ac3a419959e8a70b946876ffbbcf04f
parentUpdate to 2002 (diff)
downloadlibrewolf-fedora-ff-89a39c8164383b907e146caa5ea9047fff6aca97.tar.gz
librewolf-fedora-ff-89a39c8164383b907e146caa5ea9047fff6aca97.tar.bz2
librewolf-fedora-ff-89a39c8164383b907e146caa5ea9047fff6aca97.zip
- Oops, define the variables I expect to use.
-rw-r--r--firefox.sh.in3
-rw-r--r--firefox.spec5
2 files changed, 5 insertions, 3 deletions
diff --git a/firefox.sh.in b/firefox.sh.in
index 22a7f26..7a7ea56 100644
--- a/firefox.sh.in
+++ b/firefox.sh.in
@@ -48,8 +48,6 @@ case $MOZ_ARCH in
;;
esac
-#[ -r /etc/sysconfig/firefox-arch ] && . /etc/sysconfig/firefox-arch
-
if [ ! -x $MOZ_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin ]; then
if [ ! -x $SECONDARY_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin ]; then
echo "Error: $MOZ_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin not found"
@@ -61,6 +59,7 @@ if [ ! -x $MOZ_LIB_DIR/firefox-FIREFOX_VERSION/firefox-bin ]; then
MOZ_LIB_DIR="$SECONDARY_LIB_DIR"
fi
MOZ_DIST_BIN="$MOZ_LIB_DIR/firefox-FIREFOX_VERSION"
+MOZ_EXTENSIONS_DIR="$MOZ_DIST_BIN/extensions"
MOZ_PROGRAM="$MOZ_DIST_BIN/firefox-bin"
MOZ_CLIENT_PROGRAM="$MOZ_DIST_BIN/mozilla-xremote-client"
MOZ_CLIENT_PROGRAM_PARAM="-a firefox"
diff --git a/firefox.spec b/firefox.spec
index 7914c23..d1d8c75 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -11,7 +11,7 @@
Summary: Mozilla Firefox Web browser.
Name: firefox
Version: 2.0.0.2
-Release: 1%{?dist}
+Release: 2%{?dist}
URL: http://www.mozilla.org/projects/firefox/
License: MPL/LGPL
Group: Applications/Internet
@@ -412,6 +412,9 @@ fi
#---------------------------------------------------------------------
%changelog
+* Mon Mar 12 2007 Christopher Aillon <caillon@redhat.com> 2.0.0.2-2
+- Oops, define the variables I expect to use.
+
* Fri Feb 23 2007 Martin Stransky <stransky@redhat.com> 2.0.0.2-1
- Update to 2002
bgstack15