⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 107138 in webkit


Ignore:
Timestamp:
Feb 8, 2012, 3:20:31 PM (15 years ago)
Author:
kov@webkit.org
Message:

[GTK] Fails to build docs with non-standard build directories
https://bugs.webkit.org/show_bug.cgi?id=78118

  • gtk/common.py:

(get_build_path): add comment to document changes done in r107098,
as requested by the reviewer and forgotten by me.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r107136 r107138  
     12012-02-08  Gustavo Noronha Silva  <gns@gnome.org>
     2
     3        [GTK] Fails to build docs with non-standard build directories
     4        https://bugs.webkit.org/show_bug.cgi?id=78118
     5
     6        * gtk/common.py:
     7        (get_build_path): add comment to document changes done in r107098,
     8        as requested by the reviewer and forgotten by me.
     9
    1102012-02-08  Adam Barth  <abarth@webkit.org>
    211
  • trunk/Tools/gtk/common.py

    r107098 r107138  
    6565        return build_dir
    6666
     67    # Debian and Ubuntu build both flavours of the library (with gtk2
     68    # and with gtk3); they use directories build-2.0 and build-3.0 for
     69    # that, which is not handled by the above cases; we check that the
     70    # directory where we are called from is a valid build directory,
     71    # which should handle pretty much all other non-standard cases.
    6772    build_dir = os.getcwd()
    6873    if is_valid_build_directory(build_dir):
Note: See TracChangeset for help on using the changeset viewer.