Changeset 193741 in webkit


Ignore:
Timestamp:
Dec 8, 2015, 1:12:29 AM (10 years ago)
Author:
Carlos Garcia Campos
Message:

Unreviewed. Fix GTK+ API tests after r193639.

The new jhbuild version needs some more variables ot be present in
the builtin dict, even if they are set to None.

  • jhbuild/jhbuildutils.py:

(enter_jhbuild_environment_if_available):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r193721 r193741  
     12015-12-08  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Fix GTK+ API tests after r193639.
     4
     5        The new jhbuild version needs some more variables ot be present in
     6        the builtin dict, even if they are set to None.
     7
     8        * jhbuild/jhbuildutils.py:
     9        (enter_jhbuild_environment_if_available):
     10
    1112015-12-07  Gustavo Noronha Silva  <gns@gnome.org>
    212
  • trunk/Tools/jhbuild/jhbuildutils.py

    r192474 r193741  
    3535    sys.path.insert(0, source_path)
    3636
    37     # When loading jhbuild from the source checkout it fails if the SRCDIR variable is not set.
     37    # When loading jhbuild from the source checkout it fails if the SRCDIR, PKGDATADIR or DATADIR aren't present.
    3838    __builtin__.__dict__['SRCDIR'] = source_path
     39    __builtin__.__dict__['PKGDATADIR'] = None
     40    __builtin__.__dict__['DATADIR'] = None
    3941
    4042    # We don't know the Python version, so we just assume that we can safely take the first one in the list.
Note: See TracChangeset for help on using the changeset viewer.