diff --git a/README.md b/README.md index 4fc920fc..45bc0303 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ changes to the wine/ directory. Easy build path --- -Building Proton is quite complicated. We now provide a top-level Makefile which +Building Proton is quite complicated. We provide a top-level Makefile which will execute most of the build commands for you. This section describes how to use this Makefile for simple Proton builds. @@ -170,7 +170,7 @@ VM. If you are configuring manually, run these steps: mkdir proton/mybuild/ cd proton/mybuild - ../configure.sh --steam-runtime64=docker:steam-proton-dev-beta --steam-runtime32=docker:steam-proton-dev32-beta --steam-runtime=$HOME/steam-runtime/runtime/ + ../configure.sh --steam-runtime64=docker:steam-proton-dev --steam-runtime32=docker:steam-proton-dev32 --steam-runtime=$HOME/steam-runtime/runtime/ If you are building without the Steam runtime, then instead use: diff --git a/vagrant-user-setup.sh b/vagrant-user-setup.sh index 1c8a5f7e..c3a81c65 100755 --- a/vagrant-user-setup.sh +++ b/vagrant-user-setup.sh @@ -2,13 +2,13 @@ #set up steam runtimes. remove these lines if building without the runtime git clone https://github.com/ValveSoftware/steam-runtime.git -./steam-runtime/setup_docker.sh --beta amd64 --extra-bootstrap=/home/vagrant/proton/steamrt-bootstrap.sh steam-proton-dev-beta -./steam-runtime/setup_docker.sh --beta i386 --extra-bootstrap=/home/vagrant/proton/steamrt-bootstrap.sh steam-proton-dev32-beta +./steam-runtime/setup_docker.sh amd64 --extra-bootstrap=/home/vagrant/proton/steamrt-bootstrap.sh steam-proton-dev +./steam-runtime/setup_docker.sh i386 --extra-bootstrap=/home/vagrant/proton/steamrt-bootstrap.sh steam-proton-dev32 (cd steam-runtime && ./build-runtime.py --output=./runtime/) #configure proton build mkdir build cd build -../proton/configure.sh --steam-runtime64=docker:steam-proton-dev-beta --steam-runtime32=docker:steam-proton-dev32-beta --steam-runtime="$HOME"/steam-runtime/runtime/ +../proton/configure.sh --steam-runtime64=docker:steam-proton-dev --steam-runtime32=docker:steam-proton-dev32 --steam-runtime="$HOME"/steam-runtime/runtime/ #if building without the runtime, use: #../proton/configure.sh --no-steam-runtime