Changeset 166061 in webkit


Ignore:
Timestamp:
Mar 21, 2014 7:44:10 AM (10 years ago)
Author:
commit-queue@webkit.org
Message:

Add cache support for jhbuild
https://bugs.webkit.org/show_bug.cgi?id=130588

Patch by Jozsef Berta <jberta.u-szeged@partner.samsung.com> on 2014-03-21
Reviewed by Csaba Osztrogonác.

  • jhbuild/jhbuildrc_common.py:

(init): Jhbuild can now save the dependencies locally, if the JHBUILD_MIRROR environment variable is set.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r166058 r166061  
     12014-03-21  Jozsef Berta  <jberta.u-szeged@partner.samsung.com>
     2
     3        Add cache support for jhbuild
     4        https://bugs.webkit.org/show_bug.cgi?id=130588
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * jhbuild/jhbuildrc_common.py:
     9        (init): Jhbuild can now save the dependencies locally, if the JHBUILD_MIRROR environment variable is set.
     10
    1112014-03-21  Xabier Rodriguez Calvar  <calvaris@igalia.com>
    212
  • trunk/Tools/jhbuild/jhbuildrc_common.py

    r165452 r166061  
    8383    addpath('CMAKE_PREFIX_PATH', prefix)
    8484    addpath('CMAKE_LIBRARY_PATH', os.path.join(prefix, _library_dir))
     85
     86    if 'JHBUILD_MIRROR' in os.environ:
     87        jhbuildrc_globals['dvcs_mirror_dir'] = os.environ['JHBUILD_MIRROR']
     88        jhbuildrc_globals['tarballdir'] = os.environ['JHBUILD_MIRROR']
Note: See TracChangeset for help on using the changeset viewer.