Title: [265479] trunk/Source/_javascript_Core
Revision
265479
Author
[email protected]
Date
2020-08-10 17:25:43 -0700 (Mon, 10 Aug 2020)

Log Message

[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:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (265478 => 265479)


--- trunk/Source/_javascript_Core/ChangeLog	2020-08-11 00:14:16 UTC (rev 265478)
+++ trunk/Source/_javascript_Core/ChangeLog	2020-08-11 00:25:43 UTC (rev 265479)
@@ -1,3 +1,15 @@
+2020-08-10  Lauro Moura  <[email protected]>
+
+        [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:
+
 2020-08-10  Alex Christensen  <[email protected]>
 
         REGRESSION(r261159) PokerBros only shows black screen

Modified: trunk/Source/_javascript_Core/shell/CMakeLists.txt (265478 => 265479)


--- trunk/Source/_javascript_Core/shell/CMakeLists.txt	2020-08-11 00:14:16 UTC (rev 265478)
+++ trunk/Source/_javascript_Core/shell/CMakeLists.txt	2020-08-11 00:25:43 UTC (rev 265479)
@@ -112,6 +112,6 @@
     file(COPY
         "${_javascript_CORE_DIR}/API/tests/testapiScripts"
         DESTINATION
-        ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/testapiScripts
+        ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
     )
 endif ()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to