Changeset 101189 in webkit
- Timestamp:
- Nov 26, 2011, 12:59:05 AM (15 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
gtk/generate-gtkdoc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r101174 r101189 1 2011-11-26 Martin Robinson <mrobinson@igalia.com> 2 3 Try to fix the build after r101174. 4 5 * gtk/generate-gtkdoc: Properly handle empty PKG_CONFIG_PATHs. 6 1 7 2011-11-17 Martin Robinson <mrobinson@igalia.com> 2 8 -
trunk/Tools/gtk/generate-gtkdoc
r101174 r101189 92 92 # We need to add the JavaScriptCore build directory to the PKG_CONFIG_PATH 93 93 # so that pkgconfig can properly resolve the libjavascriptcore dependency. 94 os.environ['PKG_CONFIG_PATH'] = common.build_path('Source', 'JavaScriptCore') \ 95 + ':' + os.environ.get('PKG_CONFIG_PATH') 94 pkg_config_path = os.environ.get("PKG_CONFIG_PATH") 95 os.environ['PKG_CONFIG_PATH'] = common.build_path('Source', 'JavaScriptCore') 96 if pkg_config_path: 97 os.environ['PKG_CONFIG_PATH'] += + ':' + pkg_config_path 96 98 97 99 print "Generating WebKit1 documentation..."
Note:
See TracChangeset
for help on using the changeset viewer.