Changeset 107098 in webkit
- Timestamp:
- Feb 8, 2012, 9:31:44 AM (15 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
gtk/common.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r107088 r107098 1 2012-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 1 13 2012-02-08 Carlos Garcia Campos <cgarcia@igalia.com> 2 14 -
trunk/Tools/gtk/common.py
r106786 r107098 65 65 return build_dir 66 66 67 build_dir = os.getcwd() 68 if is_valid_build_directory(build_dir): 69 return build_dir 70 67 71 print 'Could not determine build directory.' 68 72 sys.exit(1)
Note:
See TracChangeset
for help on using the changeset viewer.