fix namespace collision for multiple proton installs

Signed-off-by: Steven Noonan <steven@valvesoftware.com>
This commit is contained in:
Steven Noonan 2018-10-13 00:27:52 -07:00
parent b3ecf24bc3
commit 7bfeb7f94d
No known key found for this signature in database
GPG key ID: 7EACB44BA7B30DB9
2 changed files with 3 additions and 5 deletions

View file

@ -263,7 +263,7 @@ $(DIST_VERSION): | $(DST_DIR)
cp $(DIST_VERSION) $(DST_BASE)/ cp $(DIST_VERSION) $(DST_BASE)/
$(DIST_COMPAT_MANIFEST): $(COMPAT_MANIFEST_TEMPLATE) $(MAKEFILE_DEP) | $(DST_DIR) $(DIST_COMPAT_MANIFEST): $(COMPAT_MANIFEST_TEMPLATE) $(MAKEFILE_DEP) | $(DST_DIR)
sed -r 's|//##DISPLAY_NAME##|"display_name" "'$(BUILD_NAME)'"|' $< > $@ sed -r 's|##BUILD_NAME##|$(BUILD_NAME)|' $< > $@
$(DIST_GECKO_DIR): $(DIST_GECKO_DIR):
mkdir -p $@ mkdir -p $@

View file

@ -2,7 +2,7 @@
{ {
"compat_tools" "compat_tools"
{ {
"proton-localbuild" // Internal name of this tool "##BUILD_NAME##" // Internal name of this tool
{ {
// Can register this tool with Steam in two ways: // Can register this tool with Steam in two ways:
// //
@ -14,9 +14,7 @@
"install_path" "." "install_path" "."
// For this template, we're going to substitute the display_name key in here, e.g.: // For this template, we're going to substitute the display_name key in here, e.g.:
// "display_name" "Proton - local build 3/2" "display_name" "##BUILD_NAME##"
//##DISPLAY_NAME##
"from_oslist" "windows" "from_oslist" "windows"
"to_oslist" "linux" "to_oslist" "linux"