OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Ralf S. Engelschall
Root: /v/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 17-Sep-2005 19:10:46
Branch: HEAD Handle: 2005091718104600
Modified files:
openpkg-src/firefox firefox.spec
Log:
fix unpacking of init files as not all tar(1) are smart enough and
automatically recognize compressed tarballs
Summary:
Revision Changes Path
1.29 +3 -3 openpkg-src/firefox/firefox.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/firefox/firefox.spec
============================================================================
$ cvs diff -u -r1.28 -r1.29 firefox.spec
--- openpkg-src/firefox/firefox.spec 13 Aug 2005 12:11:05 -0000 1.28
+++ openpkg-src/firefox/firefox.spec 17 Sep 2005 17:10:46 -0000 1.29
@@ -33,7 +33,7 @@
Group: Web
License: MPL
Version: 1.0.6
-Release: 20050813
+Release: 20050917
# package options
%option with_optimize yes
@@ -259,8 +259,8 @@
( cd $RPM_BUILD_ROOT%{l_prefix}/lib/firefox && %{l_tar} -xf - ) ||
exit $?
# add initialization files
- ( cd $RPM_BUILD_ROOT%{l_prefix}/lib && \
- %{l_tar} -xf %{SOURCE firefox-init.tar.gz} && \
+ ( cd $RPM_BUILD_ROOT%{l_prefix}/lib || exit $?
+ %{l_gzip} -d -c %{SOURCE firefox-init.tar.gz} | %{l_tar} -xf -
rm -f firefox/README
) || exit $?
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [email protected]