Shorten no-btrfs build tag name
Remove the `containerd_` portion of the build tag name as it is unnecessary. Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com>
This commit is contained in:
parent
385f56b678
commit
bd432461d3
@ -40,7 +40,7 @@ $ sudo unzip protoc-3.1.0-linux-x86_64.zip -d /usr/local
|
||||
With the required dependencies installed, the `Makefile` target named **binaries** will compile the `ctr` and `containerd` binaries and place them in the `bin/` directory. Using `sudo make install` will place the binaries in `/usr/local/bin`. When making any changes to the gRPC API, `make generate` will use the installed `protoc` compiler to regenerate the API generated code packages.
|
||||
|
||||
> *Note*: A build tag is currently available to disable building the btrfs snapshot driver.
|
||||
> Adding `BUILDTAGS=containerd_no_btrfs` to your environment before calling the **binaries**
|
||||
> Adding `BUILDTAGS=no_btrfs` to your environment before calling the **binaries**
|
||||
> Makefile target will disable the btrfs driver within the containerd Go build.
|
||||
|
||||
Vendoring of external imports uses the [`vndr` tool](https://github.com/LK4D4/vndr) which uses a simple config file, `vendor.conf`, to provide the URL and version or hash details for each vendored import. After modifying `vendor.conf` run the `vndr` tool to update the `vendor/` directory contents. Combining the `vendor.conf` update with the changeset in `vendor/` after running `vndr` should become a single commit for a PR which relies on vendored updates.
|
||||
|
@ -1,4 +1,4 @@
|
||||
// +build !containerd_no_btrfs
|
||||
// +build !no_btrfs
|
||||
|
||||
package main
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user