summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorChristopher Aillon <caillon@redhat.com>2011-02-10 19:52:18 -0800
committerChristopher Aillon <caillon@redhat.com>2011-02-10 19:52:18 -0800
commit9f853e974976a970a801db1fed029cc06a78c680 (patch)
tree4d657d0cbbce3f715863201128bbbba70346072e /firefox.spec
parentRevert the bump, it's not needed. (diff)
downloadlibrewolf-fedora-ff-9f853e974976a970a801db1fed029cc06a78c680.tar.gz
librewolf-fedora-ff-9f853e974976a970a801db1fed029cc06a78c680.tar.bz2
librewolf-fedora-ff-9f853e974976a970a801db1fed029cc06a78c680.zip
Remove some unused local variables
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec10
1 files changed, 1 insertions, 9 deletions
diff --git a/firefox.spec b/firefox.spec
index 6dbe3fa..d525c95 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -161,10 +161,7 @@ MOZ_SMP_FLAGS=-j1
[ "$RPM_BUILD_NCPUS" -ge 4 ] && MOZ_SMP_FLAGS=-j4
%endif
-INTERNAL_GECKO=%{internal_version}
-MOZ_APP_DIR=%{_libdir}/%{name}-${INTERNAL_GECKO}
-
-export LDFLAGS="-Wl,-rpath,${MOZ_APP_DIR}"
+export LDFLAGS="-Wl,-rpath,%{mozappdir}"
make -f client.mk build STRIP="/bin/true" MOZ_MAKE_FLAGS="$MOZ_SMP_FLAGS" MOZ_SERVICES_SYNC="1"
# create debuginfo for crash-stats.mozilla.com
@@ -178,11 +175,6 @@ make buildsymbols
%install
cd %{tarballdir}
-INTERNAL_GECKO=%{internal_version}
-
-INTERNAL_APP_NAME=%{name}-${INTERNAL_GECKO}
-MOZ_APP_DIR=%{_libdir}/${INTERNAL_APP_NAME}
-
DESTDIR=$RPM_BUILD_ROOT make install
%{__mkdir_p} $RPM_BUILD_ROOT{%{_libdir},%{_bindir},%{_datadir}/applications}
bgstack15