Title: [223326] trunk/Tools
Revision
223326
Author
[email protected]
Date
2017-10-14 17:24:32 -0700 (Sat, 14 Oct 2017)

Log Message

[WPE] JHBuild build directory DependenciesWPE/Build is not removed by update-webkit-libs-jhbuild
https://bugs.webkit.org/show_bug.cgi?id=178212

Reviewed by Michael Catanzaro.

* Scripts/update-webkit-libs-jhbuild:
(cleanJhbuild): The WPE JHBuild also uses a separate "Build" subdirectory, so do not skip
cleaning it when "--wpe" is passed to the script.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (223325 => 223326)


--- trunk/Tools/ChangeLog	2017-10-14 23:57:20 UTC (rev 223325)
+++ trunk/Tools/ChangeLog	2017-10-15 00:24:32 UTC (rev 223326)
@@ -1,3 +1,14 @@
+2017-10-14  Adrian Perez de Castro  <[email protected]>
+
+        [WPE] JHBuild build directory DependenciesWPE/Build is not removed by update-webkit-libs-jhbuild
+        https://bugs.webkit.org/show_bug.cgi?id=178212
+
+        Reviewed by Michael Catanzaro.
+
+        * Scripts/update-webkit-libs-jhbuild:
+        (cleanJhbuild): The WPE JHBuild also uses a separate "Build" subdirectory, so do not skip
+        cleaning it when "--wpe" is passed to the script.
+
 2017-10-13  Adrian Perez de Castro  <[email protected]>
 
         [WPE] Fontconfig fails build in JHBuild with “error: conflicting types for ‘FcObjectTypeHash’”

Modified: trunk/Tools/Scripts/update-webkit-libs-jhbuild (223325 => 223326)


--- trunk/Tools/Scripts/update-webkit-libs-jhbuild	2017-10-14 23:57:20 UTC (rev 223325)
+++ trunk/Tools/Scripts/update-webkit-libs-jhbuild	2017-10-15 00:24:32 UTC (rev 223326)
@@ -123,10 +123,7 @@
         die "Cleaning jhbuild sources failed!";
     }
 
-    if (isGtk()) {
-        # GTK+ uses a separate build directory.
-        system("rm -rf $jhbuildPath/Build");
-    }
+    system("rm -rf $jhbuildPath/Build");
 }
 
 delete $ENV{AR_FLAGS} if exists $ENV{AR_FLAGS};
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to