Changes between Version 4 and Version 5 of firefox


Ignore:
Timestamp:
04/15/2006 09:58:22 AM (18 years ago)
Author:
andy@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • firefox

    v4 v5  
    1010Just press enter when it asks you for a password. Then checkout some configuration files
    1111{{{
    12 cvs co -f mozilla/client.mk
    13 cvs co -f mozilla/browser/config/mozconfig
     12cvs co -f mozilla/client.mk &&
     13cvs co -f mozilla/browser/config/mozconfig &&
    1414cvs co -f mozilla/mail/config/mozconfig
    1515}}}
     
    4444Now you can build Firefox with these commands
    4545{{{
    46 cd mozilla
    47 ln -sf mozconfig-fox mozconfig
    48 rm -rf firefox-build
    49 make -f client.mk
    50 make -C firefox-build/browser/installer
     46cd mozilla &&
     47ln -sf mozconfig-fox mozconfig &&
     48rm -rf firefox-build &&
     49make -f client.mk &&
     50make -C firefox-build/browser/installer &&
    5151cp firefox-build/dist/firefox-3.0a1.en-US.linux-i686.tar.bz2 ../tarballs/firefox-$(date +%d-%m-%y).tar.bz2
    5252}}}
     
    5454Building Thunderbird is basically the same
    5555{{{
    56 cd mozilla
    57 ln -sf mozconfig-bird mozconfig
    58 rm -rf thunderbuild
    59 make -f client.mk
    60 make -C thunderbuild/xpinstall/packager
     56cd mozilla &&
     57ln -sf mozconfig-bird mozconfig &&
     58rm -rf thunderbuild &&
     59make -f client.mk &&
     60make -C thunderbuild/xpinstall/packager &&
    6161cp thunderbuild/dist/thunderbird-3.0a1.en-US.linux-i686.tar.bz2 ../tarballs/thunderbird-$(date +%d-%m-%y).tar.bz2
    6262}}}