Fix "Installing from source" instructions

Fixes #6387
This commit is contained in:
Andrei Vagin
2021-10-05 17:32:15 -07:00
parent 84063e88c3
commit d4386896d6
2 changed files with 5 additions and 4 deletions
+3 -2
View File
@@ -61,8 +61,9 @@ Make sure the following dependencies are installed:
Build and install the `runsc` binary:
```sh
make runsc
sudo cp ./bazel-bin/runsc/linux_amd64_pure_stripped/runsc /usr/local/bin
mkdir -p bin
make copy TARGETS=runsc DESTINATION=bin/
sudo cp ./bin/runsc /usr/local/bin
```
### Testing
+2 -2
View File
@@ -186,8 +186,8 @@ build_paths = \
(set -euo pipefail; \
$(call wrapper,$(BAZEL) build $(BASE_OPTIONS) $(BAZEL_OPTIONS) $(1)) && \
$(call wrapper,$(BAZEL) cquery $(BASE_OPTIONS) $(BAZEL_OPTIONS) $(1) --output=starlark --starlark:file=tools/show_paths.bzl) \
| xargs -r -n 1 -I {} bash -c 'test -e "{}" || exit 0; readlink -f "{}"' \
| xargs -r -n 1 -I {} bash -c 'set -euo pipefail; $(2)')
| xargs -r -I {} bash -c 'test -e "{}" || exit 0; readlink -f "{}"' \
| xargs -r -I {} bash -c 'set -euo pipefail; $(2)')
clean = $(call header,CLEAN) && $(call wrapper,$(BAZEL) clean)
build = $(call header,BUILD $(1)) && $(call build_paths,$(1),echo {})