Skip to content

Commit 1329836

Browse files
[GTK] Install binaries to pkglibexecdir rather than bindir
https://bugs.webkit.org/show_bug.cgi?id=162602 Reviewed by Carlos Garcia Campos. Source/JavaScriptCore: Install jsc shell to LIBEXEC_INSTALL_DIR rather than EXEC_INSTALL_DIR. Note these locations are the same on non-GTK ports. * shell/CMakeLists.txt: Tools: Install MiniBrowser to LIBEXEC_INSTALL_DIR rather than EXEC_INSTALL_DIR. * MiniBrowser/gtk/CMakeLists.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@206434 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 9d3531a commit 1329836

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

Source/JavaScriptCore/ChangeLog

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2016-09-27 Michael Catanzaro <[email protected]>
2+
3+
[GTK] Install binaries to pkglibexecdir rather than bindir
4+
https://bugs.webkit.org/show_bug.cgi?id=162602
5+
6+
Reviewed by Carlos Garcia Campos.
7+
8+
Install jsc shell to LIBEXEC_INSTALL_DIR rather than EXEC_INSTALL_DIR.
9+
10+
Note these locations are the same on non-GTK ports.
11+
12+
* shell/CMakeLists.txt:
13+
114
2016-09-26 Sam Weinig <[email protected]>
215

316
Make DFGSlowPathGenerator a bit more variadic

Source/JavaScriptCore/shell/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ if (JSC_LINK_FLAGS)
3333
endif ()
3434

3535
if (SHOULD_INSTALL_JS_SHELL)
36-
install(TARGETS jsc DESTINATION "${EXEC_INSTALL_DIR}")
36+
install(TARGETS jsc DESTINATION "${LIBEXEC_INSTALL_DIR}")
3737
endif ()
3838

3939
if (WIN32)

Tools/ChangeLog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2016-09-27 Michael Catanzaro <[email protected]>
2+
3+
[GTK] Install binaries to pkglibexecdir rather than bindir
4+
https://bugs.webkit.org/show_bug.cgi?id=162602
5+
6+
Reviewed by Carlos Garcia Campos.
7+
8+
Install MiniBrowser to LIBEXEC_INSTALL_DIR rather than EXEC_INSTALL_DIR.
9+
10+
* MiniBrowser/gtk/CMakeLists.txt:
11+
112
2016-09-27 Gyuyoung Kim <[email protected]>
213

314
[EFL] Locate color picker popup to center of window

Tools/MiniBrowser/gtk/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ include_directories(SYSTEM ${MiniBrowser_SYSTEM_INCLUDE_DIRECTORIES})
6262
add_executable(MiniBrowser ${MiniBrowser_SOURCES})
6363
target_link_libraries(MiniBrowser ${MiniBrowser_LIBRARIES})
6464

65-
install(TARGETS MiniBrowser DESTINATION "${EXEC_INSTALL_DIR}")
65+
install(TARGETS MiniBrowser DESTINATION "${LIBEXEC_INSTALL_DIR}")

0 commit comments

Comments
 (0)