ffmpeg: Fix script with xmake dev (#4744)

pull/4745/head
Jérôme Leclercq 4 months ago committed by GitHub
parent d79da8c7fb
commit b87af4f41e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/f/ffmpeg/xmake.lua

@ -256,7 +256,7 @@ package("ffmpeg")
else
-- rename files from libxx.a to xx.lib
for _, libfile in ipairs(os.files(package:installdir("lib", "*.a"))) do
os.vmv(libfile, libfile:gsub("^(.+[\\/])lib(.+)%.a$", "%1%2.lib"))
os.vmv(libfile, (libfile:gsub("^(.+[\\/])lib(.+)%.a$", "%1%2.lib")))
end
end
elseif package:is_plat("android") then

Loading…
Cancel
Save