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

Changeset 101189 in webkit


Ignore:
Timestamp:
Nov 26, 2011, 12:59:05 AM (15 years ago)
Author:
Martin Robinson
Message:

Try to fix the build after r101174.

  • gtk/generate-gtkdoc: Properly handle empty PKG_CONFIG_PATHs.
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r101174 r101189  
     12011-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
    172011-11-17  Martin Robinson  <mrobinson@igalia.com>
    28
  • trunk/Tools/gtk/generate-gtkdoc

    r101174 r101189  
    9292# We need to add the JavaScriptCore build directory to the PKG_CONFIG_PATH
    9393# 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')
     94pkg_config_path = os.environ.get("PKG_CONFIG_PATH")
     95os.environ['PKG_CONFIG_PATH'] = common.build_path('Source', 'JavaScriptCore')
     96if pkg_config_path:
     97    os.environ['PKG_CONFIG_PATH'] += + ':' + pkg_config_path
    9698
    9799print "Generating WebKit1 documentation..."
Note: See TracChangeset for help on using the changeset viewer.