Changeset 81712 in webkit


Ignore:
Timestamp:
Mar 22, 2011 3:45:07 PM (13 years ago)
Author:
abarth@webkit.org
Message:

2011-03-22 Adam Barth <abarth@webkit.org>

Reviewed by Eric Seidel.

gyp/configure shouldn&apos;t require GYP to be in your path
https://bugs.webkit.org/show_bug.cgi?id=56873

Now that GYP is on Source/ThirdParty/gyp, we can just use that copy
instead of requiring GYP to be in the user's path.

  • Source/gyp/configure:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r81709 r81712  
     12011-03-22  Adam Barth  <abarth@webkit.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        gyp/configure shouldn&apos;t require GYP to be in your path
     6        https://bugs.webkit.org/show_bug.cgi?id=56873
     7
     8        Now that GYP is on Source/ThirdParty/gyp, we can just use that copy
     9        instead of requiring GYP to be in the user's path.
     10
     11        * Source/gyp/configure:
     12
    1132011-03-22  Adam Barth  <abarth@webkit.org>
    214
  • trunk/Source/gyp/configure

    r80459 r81712  
    4242def create_project(project):
    4343    subprocess.call([
    44         'gyp',  # FIXME: gyp shouldn't need to be in the PATH.
     44        os.path.join('ThirdParty', 'gyp', 'gyp'),
    4545        os.path.join(project, 'gyp', project + '.gyp'),
    4646        '-G',
Note: See TracChangeset for help on using the changeset viewer.