Changeset 280965 in webkit
- Timestamp:
- Aug 12, 2021, 6:52:29 AM (5 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/run-gtk-tests (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r280958 r280965 1 2021-08-12 Carlos Garcia Campos <cgarcia@igalia.com> 2 3 [GTK] run-gtk-tests always fails to start accessibility daemons 4 https://bugs.webkit.org/show_bug.cgi?id=229031 5 6 Reviewed by Michael Catanzaro. 7 8 This is because it uses exec_prefix variable from atspi2 pkg-config file to try to find the executables, but 9 atspi2 pkg-config file doesn't have a exec_prefix variable anymore. It was always set to $prefix, so we can just 10 use prefix variable instead. 11 12 * Scripts/run-gtk-tests: 13 (GtkTestRunner._lookup_atspi2_binary): 14 1 15 2021-08-12 Youenn Fablet <youenn@apple.com> 2 16 -
trunk/Tools/Scripts/run-gtk-tests
r272484 r280965 45 45 46 46 def _lookup_atspi2_binary(self, filename): 47 exec_prefix = common.pkg_config_file_variable('atspi-2', 'exec_prefix')48 if not exec_prefix:47 prefix = common.pkg_config_file_variable('atspi-2', 'prefix') 48 if not prefix: 49 49 return None 50 50 for path in ['libexec', 'lib/at-spi2-core', 'lib32/at-spi2-core', 'lib64/at-spi2-core']: 51 filepath = os.path.join( exec_prefix, path, filename)51 filepath = os.path.join(prefix, path, filename) 52 52 if os.path.isfile(filepath): 53 53 return filepath
Note:
See TracChangeset
for help on using the changeset viewer.