From 49df129ccd7aa4b8b6f2bbc6d61db7bb03f5f2eb Mon Sep 17 00:00:00 2001 From: Branden Timm Date: Wed, 8 Jul 2020 10:37:43 -0500 Subject: [PATCH] docs: add submodule update step prior to 'make release' (#1213) * docs: add submodule update step prior to 'make release' --- BUILDING.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BUILDING.md b/BUILDING.md index e031a302..1a7b6558 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -92,6 +92,10 @@ Now that we have a working static build, it's time to make a release tarball: make release +If you did not clone the repository with the `--recursive` option, you will get errors until you initialize the project submodules: + + git submodule update --init + The release tarball is stored in build/release.tar.gz, and can be extracted with the following command (for example in ~/lib):