From e7a0af993f50f16913bbe79f091588411665d0b9 Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Tue, 2 Apr 2024 10:34:53 +0200 Subject: [PATCH] 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. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 2508ad0b..4ecab562 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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)