Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

Commit 446cbc0

Browse files
[CMake][JSC] Fix testapiScripts copy location
https://bugs.webkit.org/show_bug.cgi?id=215338 file(COPY src/dir DESTINATION target/dir) copies the entire `dir` inside target/dir instead of only the contents. Reviewed by Alex Christensen. * shell/CMakeLists.txt: git-svn-id: http://svn.webkit.org/repository/webkit/trunk@265479 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 22bcd4c commit 446cbc0

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Source/JavaScriptCore/ChangeLog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
2020-08-10 Lauro Moura <[email protected]>
2+
3+
[CMake][JSC] Fix testapiScripts copy location
4+
https://bugs.webkit.org/show_bug.cgi?id=215338
5+
6+
file(COPY src/dir DESTINATION target/dir) copies the entire `dir`
7+
inside target/dir instead of only the contents.
8+
9+
Reviewed by Alex Christensen.
10+
11+
* shell/CMakeLists.txt:
12+
113
2020-08-10 Alex Christensen <[email protected]>
214

315
REGRESSION(r261159) PokerBros only shows black screen

Source/JavaScriptCore/shell/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,6 @@ if (DEVELOPER_MODE)
112112
file(COPY
113113
"${JAVASCRIPTCORE_DIR}/API/tests/testapiScripts"
114114
DESTINATION
115-
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/testapiScripts
115+
${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
116116
)
117117
endif ()

0 commit comments

Comments
 (0)