Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
2011-02-22 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>
        Reviewed by Kenneth Rohde Christiansen.

        [Qt] QtWebProcess should be installed with 'make install'
        https://bugs.webkit.org/show_bug.cgi?id=44100

        Follow the standard in other project files and allow install
        location to be changed with INSTALL_BINS variable.

        * WebProcess.pro: Install QtWebProcess.

Canonical link: https://commits.webkit.org/69225@main
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@79302 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
webkit-commit-queue committed Feb 22, 2011
1 parent 26c8134 commit 0972cb8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Source/WebKit2/ChangeLog
@@ -1,3 +1,15 @@
2011-02-22 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>

Reviewed by Kenneth Rohde Christiansen.

[Qt] QtWebProcess should be installed with 'make install'
https://bugs.webkit.org/show_bug.cgi?id=44100

Follow the standard in other project files and allow install
location to be changed with INSTALL_BINS variable.

* WebProcess.pro: Install QtWebProcess.

2011-02-22 Sheriff Bot <webkit.review.bot@gmail.com>

Unreviewed, rolling out r79296.
Expand Down
7 changes: 7 additions & 0 deletions Source/WebKit2/WebProcess.pro
@@ -1,5 +1,12 @@
TEMPLATE = app
TARGET = QtWebProcess
INSTALLS += target

isEmpty(INSTALL_BINS) {
target.path = $$[QT_INSTALL_BINS]
} else {
target.path = $$INSTALL_BINS
}

SOURCES += \
qt/MainQt.cpp
Expand Down

0 comments on commit 0972cb8

Please sign in to comment.