Changeset 152277 in webkit


Ignore:
Timestamp:
Jul 1, 2013 7:00:40 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[Efl][Gtk] Look at WEBKIT_OUTPUTDIR instead of WEBKITOUTPUTDIR in jhbuildrc
https://bugs.webkit.org/show_bug.cgi?id=118267

Patch by Nick Diego Yamane <nick.yamane@openbossa.org> on 2013-07-01
Reviewed by Gyuyoung Kim.

After r152226 (from https://bugs.webkit.org/show_bug.cgi?id=117249)
WEBKIT_OUTPUTDIR should be used instead of WEBKITOUPUTDIR. However
Efl's jhbuildrc is still using the WEBKITOUTPUTDIR environment variable.

  • efl/jhbuildrc:
  • gtk/jhbuildrc:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r152275 r152277  
     12013-07-01  Nick Diego Yamane  <nick.yamane@openbossa.org>
     2
     3        [Efl][Gtk] Look at WEBKIT_OUTPUTDIR instead of WEBKITOUTPUTDIR in jhbuildrc
     4        https://bugs.webkit.org/show_bug.cgi?id=118267
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        After r152226 (from https://bugs.webkit.org/show_bug.cgi?id=117249)
     9        WEBKIT_OUTPUTDIR should be used instead of WEBKITOUPUTDIR. However
     10        Efl's jhbuildrc is still using the WEBKITOUTPUTDIR environment variable.
     11
     12        * efl/jhbuildrc:
     13        * gtk/jhbuildrc:
     14
    1152013-07-01  Gustavo Noronha Silva  <gustavo.noronha@collabora.com>
    216
  • trunk/Tools/efl/jhbuildrc

    r147122 r152277  
    3939    modules.extend(__extra_modules)
    4040
    41 if os.environ.has_key('WEBKITOUTPUTDIR'):
    42     checkoutroot = os.path.abspath(os.path.join(os.environ['WEBKITOUTPUTDIR'], 'Dependencies', 'Source'))
    43     prefix = os.path.abspath(os.path.join(os.environ['WEBKITOUTPUTDIR'], 'Dependencies', 'Root'))
     41if os.environ.has_key('WEBKIT_OUTPUTDIR'):
     42    checkoutroot = os.path.abspath(os.path.join(os.environ['WEBKIT_OUTPUTDIR'], 'Dependencies', 'Source'))
     43    prefix = os.path.abspath(os.path.join(os.environ['WEBKIT_OUTPUTDIR'], 'Dependencies', 'Root'))
    4444else:
    4545    checkoutroot = os.path.abspath(common.top_level_path('WebKitBuild','Dependencies', 'Source'))
  • trunk/Tools/gtk/jhbuildrc

    r148916 r152277  
    3636    modules.extend(__extra_modules)
    3737
    38 if os.environ.has_key('WEBKITOUTPUTDIR'):
    39     checkoutroot = os.path.abspath(os.path.join(os.environ['WEBKITOUTPUTDIR'], 'Dependencies', 'Source'))
    40     prefix = os.path.abspath(os.path.join(os.environ['WEBKITOUTPUTDIR'], 'Dependencies', 'Root'))
     38if os.environ.has_key('WEBKIT_OUTPUTDIR'):
     39    checkoutroot = os.path.abspath(os.path.join(os.environ['WEBKIT_OUTPUTDIR'], 'Dependencies', 'Source'))
     40    prefix = os.path.abspath(os.path.join(os.environ['WEBKIT_OUTPUTDIR'], 'Dependencies', 'Root'))
    4141else:
    4242    checkoutroot = os.path.abspath(common.top_level_path('WebKitBuild','Dependencies', 'Source'))
Note: See TracChangeset for help on using the changeset viewer.