Changeset 107098 in webkit


Ignore:
Timestamp:
Feb 8, 2012 9:31:44 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Gustavo Noronha Silva <Gustavo Noronha Silva> on 2012-02-08
Reviewed by Martin Robinson.

  • gtk/common.py:

(get_build_path): also try the current directory as a valid build
dir, which makes non-standard build directories such as build-2.0
and build-3.0 work

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r107088 r107098  
     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        Reviewed by Martin Robinson.
     7
     8        * gtk/common.py:
     9        (get_build_path): also try the current directory as a valid build
     10        dir, which makes non-standard build directories such as build-2.0
     11        and build-3.0 work
     12
    1132012-02-08  Carlos Garcia Campos  <cgarcia@igalia.com>
    214
  • trunk/Tools/gtk/common.py

    r106786 r107098  
    6565        return build_dir
    6666
     67    build_dir = os.getcwd()
     68    if is_valid_build_directory(build_dir):
     69        return build_dir
     70
    6771    print 'Could not determine build directory.'
    6872    sys.exit(1)
Note: See TracChangeset for help on using the changeset viewer.