Title: [260565] trunk/Tools
Revision
260565
Author
[email protected]
Date
2020-04-23 04:21:13 -0700 (Thu, 23 Apr 2020)

Log Message

[JHBuild] Add mock release/debug options to the update script

Rubber-stamped by Carlos Alberto Lopez Perez.

These options are now required after r260560. They're not used
though because JHBuild itself doesn't have the notion of build
configuration, unlike the Flatpak SDK.

* Scripts/update-webkit-libs-jhbuild:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (260564 => 260565)


--- trunk/Tools/ChangeLog	2020-04-23 10:18:33 UTC (rev 260564)
+++ trunk/Tools/ChangeLog	2020-04-23 11:21:13 UTC (rev 260565)
@@ -1,5 +1,17 @@
 2020-04-23  Philippe Normand  <[email protected]>
 
+        [JHBuild] Add mock release/debug options to the update script
+
+        Rubber-stamped by Carlos Alberto Lopez Perez.
+
+        These options are now required after r260560. They're not used
+        though because JHBuild itself doesn't have the notion of build
+        configuration, unlike the Flatpak SDK.
+
+        * Scripts/update-webkit-libs-jhbuild:
+
+2020-04-23  Philippe Normand  <[email protected]>
+
         [GTK][WPE] White-list more GStreamer environment variables in webkitpy
         https://bugs.webkit.org/show_bug.cgi?id=210854
 

Modified: trunk/Tools/Scripts/update-webkit-libs-jhbuild (260564 => 260565)


--- trunk/Tools/Scripts/update-webkit-libs-jhbuild	2020-04-23 10:18:33 UTC (rev 260564)
+++ trunk/Tools/Scripts/update-webkit-libs-jhbuild	2020-04-23 11:21:13 UTC (rev 260565)
@@ -35,10 +35,14 @@
 
 my $wipeOnChange = $ENV{JHBUILD_WIPE_ON_CHANGE} // 1;
 my $force = 0;
+my $release = 0;
+my $debug = 0;
 
 GetOptions(
     'wipe-on-change!' => \$wipeOnChange,
-    'force' => \$force
+    'force' => \$force,
+    'release' => \$release,
+    'debug' => \$debug
 );
 
 sub getJhbuildIncludedFilePaths
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to