mirror of
https://git.suyu.dev/suyu/Yucom.git
synced 2025-12-21 21:26:03 +01:00
Makefile.in: Don't fail when updating openvr_api_dxvk.dll.
These files are copied into lib(64)/wine/dxvk with user-write permission, which is later removed by default_pfx: rule. Hence failing to 'cp' upon update.
This commit is contained in:
parent
72d5b322d9
commit
e7a0af993f
1 changed files with 2 additions and 2 deletions
|
|
@ -1009,12 +1009,12 @@ all-dist: $(DIST_XALIA)
|
|||
DIST_OVR32 := $(DST_LIBDIR32)/wine/dxvk/openvr_api_dxvk.dll
|
||||
$(DIST_OVR32): $(SRCDIR)/openvr/bin/win32/openvr_api.dll | $(DST_DIR)
|
||||
mkdir -p $(DST_LIBDIR32)/wine/dxvk
|
||||
cp -a $< $@
|
||||
cp -af $< $@
|
||||
|
||||
DIST_OVR64 := $(DST_LIBDIR64)/wine/dxvk/openvr_api_dxvk.dll
|
||||
$(DIST_OVR64): $(SRCDIR)/openvr/bin/win64/openvr_api.dll | $(DST_DIR)
|
||||
mkdir -p $(DST_LIBDIR64)/wine/dxvk
|
||||
cp -a $< $@
|
||||
cp -af $< $@
|
||||
|
||||
all-dist: $(DIST_OVR32) $(DIST_OVR64)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue