Title: [280366] trunk/Tools
Revision
280366
Author
[email protected]
Date
2021-07-27 17:55:24 -0700 (Tue, 27 Jul 2021)

Log Message

[GTK][WPE] Fix wrong path to GLIB dependencies introduced in r280354.

Unreviewed follow-up fix.

* gtk/dependencies/apt:
* gtk/dependencies/dnf:
* gtk/dependencies/pacman:
* wpe/dependencies/apt:
* wpe/dependencies/dnf:
* wpe/dependencies/pacman:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (280365 => 280366)


--- trunk/Tools/ChangeLog	2021-07-28 00:47:02 UTC (rev 280365)
+++ trunk/Tools/ChangeLog	2021-07-28 00:55:24 UTC (rev 280366)
@@ -1,3 +1,16 @@
+2021-07-27  Diego Pino Garcia  <[email protected]>
+
+        [GTK][WPE] Fix wrong path to GLIB dependencies introduced in r280354.
+
+        Unreviewed follow-up fix.
+
+        * gtk/dependencies/apt:
+        * gtk/dependencies/dnf:
+        * gtk/dependencies/pacman:
+        * wpe/dependencies/apt:
+        * wpe/dependencies/dnf:
+        * wpe/dependencies/pacman:
+
 2021-07-27  Jonathan Bedard  <[email protected]>
 
         [build.webkit.org] Simulator temp files filling up disk

Modified: trunk/Tools/gtk/dependencies/apt (280365 => 280366)


--- trunk/Tools/gtk/dependencies/apt	2021-07-28 00:47:02 UTC (rev 280365)
+++ trunk/Tools/gtk/dependencies/apt	2021-07-28 00:55:24 UTC (rev 280366)
@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 
-source "$(dirname "$0")/../../glib/dependencies/apt"
+source "$(dirname "$0")/../glib/dependencies/apt"
 
 # If the package $1 is available, prints it. Otherwise prints $2.
 # Useful for handling when a package is renamed on new versions of Debian/Ubuntu.

Modified: trunk/Tools/gtk/dependencies/dnf (280365 => 280366)


--- trunk/Tools/gtk/dependencies/dnf	2021-07-28 00:47:02 UTC (rev 280365)
+++ trunk/Tools/gtk/dependencies/dnf	2021-07-28 00:55:24 UTC (rev 280366)
@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 
-source "$(dirname "$0")/../../glib/dependencies/dnf"
+source "$(dirname "$0")/../glib/dependencies/dnf"
 
 PACKAGES+=(
     # These are dependencies necessary for building WebKitGTK.

Modified: trunk/Tools/gtk/dependencies/pacman (280365 => 280366)


--- trunk/Tools/gtk/dependencies/pacman	2021-07-28 00:47:02 UTC (rev 280365)
+++ trunk/Tools/gtk/dependencies/pacman	2021-07-28 00:55:24 UTC (rev 280366)
@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 
-source "$(dirname "$0")/../../glib/dependencies/pacman"
+source "$(dirname "$0")/../glib/dependencies/pacman"
 
 PACKAGES+=(
     # These are dependencies necessary for building WebKitGTK.

Modified: trunk/Tools/wpe/dependencies/apt (280365 => 280366)


--- trunk/Tools/wpe/dependencies/apt	2021-07-28 00:47:02 UTC (rev 280365)
+++ trunk/Tools/wpe/dependencies/apt	2021-07-28 00:55:24 UTC (rev 280366)
@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 
-source "$(dirname "$0")/../../glib/dependencies/apt"
+source "$(dirname "$0")/../glib/dependencies/apt"
 
 # If the package $1 is available, prints it. Otherwise prints $2.
 # Useful for handling when a package is renamed on new versions of Debian/Ubuntu.

Modified: trunk/Tools/wpe/dependencies/dnf (280365 => 280366)


--- trunk/Tools/wpe/dependencies/dnf	2021-07-28 00:47:02 UTC (rev 280365)
+++ trunk/Tools/wpe/dependencies/dnf	2021-07-28 00:55:24 UTC (rev 280366)
@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 
-source "$(dirname "$0")/../../glib/dependencies/dnf"
+source "$(dirname "$0")/../glib/dependencies/dnf"
 
 PACKAGES+=(
     # These are dependencies necessary for building WebKitWPE.

Modified: trunk/Tools/wpe/dependencies/pacman (280365 => 280366)


--- trunk/Tools/wpe/dependencies/pacman	2021-07-28 00:47:02 UTC (rev 280365)
+++ trunk/Tools/wpe/dependencies/pacman	2021-07-28 00:55:24 UTC (rev 280366)
@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 
-source "$(dirname "$0")/../../glib/dependencies/pacman"
+source "$(dirname "$0")/../glib/dependencies/pacman"
 
 PACKAGES+=(
     # These are dependencies necessary for building WPE.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to