Changeset 61179 in webkit


Ignore:
Timestamp:
Jun 15, 2010 1:15:49 AM (14 years ago)
Author:
Simon Hausmann
Message:

[Qt] The qt_webkit_version.pri file gets overwritten on install
https://bugs.webkit.org/show_bug.cgi?id=40487

Patch by Jocelyn Turcotte <jocelyn.turcotte@nokia.com> on 2010-06-15
Reviewed by Simon Hausmann.

Don't install qt_webkit_version.pri when building WebKit inside of Qt.
The import of WebKit into Qt will take care of providing the file
in mkspecs/modules and it'll be installed through projects.pro.

  • WebCore.pro:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r61178 r61179  
     12010-06-15  Jocelyn Turcotte  <jocelyn.turcotte@nokia.com>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [Qt] The qt_webkit_version.pri file gets overwritten on install
     6        https://bugs.webkit.org/show_bug.cgi?id=40487
     7
     8        Don't install qt_webkit_version.pri when building WebKit inside of Qt.
     9        The import of WebKit into Qt will take care of providing the file
     10        in mkspecs/modules and it'll be installed through projects.pro.
     11
     12        * WebCore.pro:
     13
    1142010-06-15  Tony Chang  <tony@chromium.org>
    215
  • trunk/WebCore/WebCore.pro

    r61163 r61179  
    29742974HEADERS += $$WEBKIT_API_HEADERS
    29752975
    2976 CONFIG(QTDIR_build) {
    2977     modfile.files = $$moduleFile
    2978     modfile.path = $$[QMAKE_MKSPECS]/modules
    2979 
    2980     INSTALLS += modfile
    2981 } else {
     2976!CONFIG(QTDIR_build) {
    29822977    exists($$OUTPUT_DIR/include/QtWebKit/classheaders.pri): include($$OUTPUT_DIR/include/QtWebKit/classheaders.pri)
    29832978    WEBKIT_INSTALL_HEADERS = $$WEBKIT_API_HEADERS $$WEBKIT_CLASS_HEADERS
Note: See TracChangeset for help on using the changeset viewer.