-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix adwaita-icon-theme wrong cursor location
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
gvsbuild/patches/adwaita-icon-theme/001-fix-relative-cursor-path.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Subject: [PATCH] Wrong cursor directory | ||
--- | ||
Index: meson.build | ||
IDEA additional info: | ||
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP | ||
<+>UTF-8 | ||
=================================================================== | ||
diff --git a/meson.build b/meson.build | ||
--- a/meson.build (revision 0d44a3fec0171cb8689e79df0186082907533383) | ||
+++ b/meson.build (date 1708871122562) | ||
@@ -27,12 +27,13 @@ | ||
win32_cursors = command_output.stdout().strip().split('\n') | ||
if host_machine.system() == 'windows' | ||
cursors_with_rel_path = [] | ||
+ icons_dir = get_option('datadir') / 'icons' | ||
foreach cursor : win32_cursors | ||
cursors_with_rel_path += f'Adwaita/cursors/@cursor@' | ||
endforeach | ||
install_data( | ||
cursors_with_rel_path, | ||
- install_dir: adwaita_dir, | ||
+ install_dir: icons_dir, | ||
preserve_path: true, | ||
install_tag : 'runtime', | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters