1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-29 17:52:18 +01:00

[meta] Restore .a files removal on non-devbuilds.

This was -supposedly mistakenly- removed with 436357e28096f5e1e25aa8b72fceb77123ea8404
This commit is contained in:
Tk-Glitch 2020-04-22 05:26:11 +02:00 committed by Philip Rebohle
parent bea16263e4
commit 6b6347ea2c

View File

@ -61,6 +61,8 @@ function build_arch {
ninja install
if [ $opt_devbuild -eq 0 ]; then
# get rid of some useless .a files
rm "$DXVK_BUILD_DIR/x$1/"*.!(dll)
rm -R "$DXVK_BUILD_DIR/build.$1"
fi
}