dxvk: fix DLL override setup

`basename srcpath` simply prints "srcpath" which results in a single DLL
override for srcpath.dll to be installed... clearly not what we want.
This commit is contained in:
novenary 2023-03-12 14:51:25 +02:00
parent 9f6bee2880
commit 2fc61b77cf

View File

@ -261,5 +261,5 @@ done
for srcpath in "${!paths[@]}"; do
${action}_file "$srcpath" "${paths["$srcpath"]}"
${action}_override "$(basename srcpath)"
${action}_override "$(basename "$srcpath" .dll)"
done