@@ -237,8 +237,7 @@ def install_x86_support_libraries(gha_build=False):
237
237
if is_linux_os ():
238
238
packages = ['gcc-multilib' , 'g++-multilib' , 'libglib2.0-dev:i386' ,
239
239
'libsecret-1-dev:i386' , 'libpthread-stubs0-dev:i386' ,
240
- 'libssl-dev:i386' , 'libsecret-1-0:i386' ,
241
- 'libpcre2-posix2:i386' ]
240
+ 'libssl-dev:i386' , 'libsecret-1-0:i386' ]
242
241
remove_packages = []
243
242
244
243
# First check if these packages exist on the machine already
@@ -256,10 +255,8 @@ def install_x86_support_libraries(gha_build=False):
256
255
if gha_build :
257
256
# Remove libpcre to prevent package conflicts.
258
257
# Only remove packages on GitHub runners.
259
- remove_packages = ['libpcre2-dev:amd64' , 'libpcre2-32-0:amd64' ,
260
- 'libpcre2-8-0:amd64' , 'libpcre2-16-0:amd64' ,
261
- 'libpcre3-dev:amd64' , 'libpcre3-0:amd64' ,
262
- 'libpcre16-0:amd64' , 'libpcre32-0:amd64' ]
258
+ remove_packages = ['libpcre2-16-0:amd64' , 'libpcre2-32-0:amd64' , 'libpcre2-8-0:amd64' ,
259
+ 'libpcre2-posix3:amd64' , 'libpcre2-dev:amd64' , 'pcre2-utils:amd64' ]
263
260
# Note: With aptitude, you can remove package 'xyz' by specifying 'xyz-'
264
261
# in the package list.
265
262
run_command (['aptitude' , 'install' , '-V' , '-y' ] + packages +
0 commit comments