From c7042360551e4bd2754acbc90e6c9362d49bad22 Mon Sep 17 00:00:00 2001 From: Itoh Shimon Date: Wed, 3 Nov 2021 12:46:24 +0900 Subject: [PATCH] fixup! Don't ship proton dist files in a tarball anymore Link: https://github.com/ValveSoftware/Proton/pull/5278 --- Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index a6dd935c..227d627c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -380,7 +380,8 @@ deploy: dist | $(filter-out dist deploy install redist,$(MAKECMDGOALS)) install: dist | $(filter-out dist deploy install redist,$(MAKECMDGOALS)) if [ ! -d $(STEAM_DIR) ]; then echo >&2 "!! "$(STEAM_DIR)" does not exist, cannot install"; return 1; fi mkdir -p $(STEAM_DIR)/compatibilitytools.d/$(BUILD_NAME) - cp -af --no-dereference --preserve=mode,links $(DST_BASE)/* $(STEAM_DIR)/compatibilitytools.d/$(BUILD_NAME) + # Use -r instead of -a for sshfs + cp -rf --no-dereference --preserve=mode,links $(DST_BASE)/* $(STEAM_DIR)/compatibilitytools.d/$(BUILD_NAME) @echo "Installed Proton to "$(STEAM_DIR)/compatibilitytools.d/$(BUILD_NAME) @echo "You may need to restart Steam to select this tool"