Title: [175436] trunk/Tools
Revision
175436
Author
m...@apple.com
Date
2014-10-31 16:37:25 -0700 (Fri, 31 Oct 2014)

Log Message

llvmForJSC build emits a linker warning that it can't find usr/local/LLVMForJavaScriptCore/lib under the build directory
https://bugs.webkit.org/show_bug.cgi?id=138259

Reviewed by Geoff Garen.

* Scripts/copy-webkitlibraries-to-product-directory: Create this directory even if it’s
going to be empty to silence the warning.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (175435 => 175436)


--- trunk/Tools/ChangeLog	2014-10-31 23:25:05 UTC (rev 175435)
+++ trunk/Tools/ChangeLog	2014-10-31 23:37:25 UTC (rev 175436)
@@ -1,3 +1,13 @@
+2014-10-31  Dan Bernstein  <m...@apple.com>
+
+        llvmForJSC build emits a linker warning that it can't find usr/local/LLVMForJavaScriptCore/lib under the build directory
+        https://bugs.webkit.org/show_bug.cgi?id=138259
+
+        Reviewed by Geoff Garen.
+
+        * Scripts/copy-webkitlibraries-to-product-directory: Create this directory even if it’s
+        going to be empty to silence the warning.
+
 2014-10-31  Adrian Perez de Castro  <ape...@igalia.com>
 
         [GTK] Support script message handlers WebKitUserContentManager

Modified: trunk/Tools/Scripts/copy-webkitlibraries-to-product-directory (175435 => 175436)


--- trunk/Tools/Scripts/copy-webkitlibraries-to-product-directory	2014-10-31 23:25:05 UTC (rev 175435)
+++ trunk/Tools/Scripts/copy-webkitlibraries-to-product-directory	2014-10-31 23:37:25 UTC (rev 175436)
@@ -160,7 +160,8 @@
     (system("mkdir", "-p", "$productDir$llvmPrefix/include") == 0) or die;
 
     my $libraryDir = $useFullLibPaths ? "$productDir$llvmPrefix/lib" : $productDir;
-    (system("mkdir", "-p", $libraryDir) == 0) or die;
+    # Always create a directory at the full library path, because the _javascript_Core build emits a warning if it's not there.
+    (system("mkdir", "-p", "$productDir$llvmPrefix/lib") == 0) or die;
 
     # Determine where to get LLVM binaries and headers.
     my $useOwnLLVM = 0;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to