Changeset 192471 in webkit


Ignore:
Timestamp:
Nov 16, 2015 8:13:51 AM (8 years ago)
Author:
Carlos Garcia Campos
Message:

Unreviewed. Fix GTK+ layout tests running after r192469.

We fail to find the Gallium llvmpipe driver because of the build
directory change in r192469.

  • gtk/jhbuildrc: Use buildroot instead of checkoutdir to build

the LLVMPIPE_LIBGL_PATH.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r192469 r192471  
     12015-11-16  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        Unreviewed. Fix GTK+ layout tests running after r192469.
     4
     5        We fail to find the Gallium llvmpipe driver because of the build
     6        directory change in r192469.
     7
     8        * gtk/jhbuildrc: Use buildroot instead of checkoutdir to build
     9        the LLVMPIPE_LIBGL_PATH.
     10
    1112015-11-16  Carlos Garcia Campos  <cgarcia@igalia.com>
    212
  • trunk/Tools/gtk/jhbuildrc

    r192469 r192471  
    4040
    4141if use_lib64:
    42     os.environ['LLVMPIPE_LIBGL_PATH'] = os.path.abspath(os.path.join(checkoutroot, 'Mesa', 'lib64', 'gallium'))
     42    os.environ['LLVMPIPE_LIBGL_PATH'] = os.path.abspath(os.path.join(buildroot, 'Mesa', 'lib64', 'gallium'))
    4343else:
    44     os.environ['LLVMPIPE_LIBGL_PATH'] = os.path.abspath(os.path.join(checkoutroot, 'Mesa', 'lib', 'gallium'))
     44    os.environ['LLVMPIPE_LIBGL_PATH'] = os.path.abspath(os.path.join(buildroot, 'Mesa', 'lib', 'gallium'))
    4545
    4646if 'x86_64' in platform.machine():
Note: See TracChangeset for help on using the changeset viewer.