Commit 2fc61b77 authored by novenary's avatar novenary
Browse files

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.
parent 9f6bee28
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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