aboutsummaryrefslogtreecommitdiff
path: root/Manual.md
diff options
context:
space:
mode:
authorDominik Honnef <dominik@honnef.co>2015-02-21 12:52:10 +0000
committerDominik Honnef <dominik@honnef.co>2015-02-21 13:49:02 +0000
commitbd750884229ebf4518683223873ba25ea3145a97 (patch)
tree45067f55fb175fdb7408eb569291723bc8e4ace0 /Manual.md
parent77e8751a931405230d6746a4f9d40ec575271a3a (diff)
downloadvoid-packages-bd750884229ebf4518683223873ba25ea3145a97.tar
void-packages-bd750884229ebf4518683223873ba25ea3145a97.tar.gz
void-packages-bd750884229ebf4518683223873ba25ea3145a97.tar.bz2
void-packages-bd750884229ebf4518683223873ba25ea3145a97.tar.lz
void-packages-bd750884229ebf4518683223873ba25ea3145a97.tar.xz
void-packages-bd750884229ebf4518683223873ba25ea3145a97.tar.zst
void-packages-bd750884229ebf4518683223873ba25ea3145a97.zip
rename import_path to go_import_path
Diffstat (limited to 'Manual.md')
-rw-r--r--Manual.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/Manual.md b/Manual.md
index 130bc5185f3..a80e486a74e 100644
--- a/Manual.md
+++ b/Manual.md
@@ -514,7 +514,7 @@ target can be overriden via `make_build_target` and the install target
via `make_install_target`.
- `go` For programs written in Go that follow the standard package
- structure. The variable `import_path` must be set to the package's
+ structure. The variable `go_import_path` must be set to the package's
import path, e.g. `github.com/github/hub` for the `hub` program. If
the variable `go_get` is set to `yes`, the package will be
downloaded with `go get`. Otherwise (the default) it's expected that
@@ -939,10 +939,10 @@ setting up cross compilation.
The following variables influence how Go packages are built:
-- `import_path`: The import path of the package, as it would be used
- with `go get`. For example, GitHub's `hub` program has the import
- path `github.com/github/hub`. This variable is required.
-- `go_get`: If set to yes, the package specified via `import_path`
+- `go_import_path`: The import path of the package, as it would be
+ used with `go get`. For example, GitHub's `hub` program has the
+ import path `github.com/github/hub`. This variable is required.
+- `go_get`: If set to yes, the package specified via `go_import_path`
will be downloaded with `go get`. Otherwise, a distfile has to be
provided. This option should only be used with `-git` (or similar)
packages; using a versioned distfile is prefered.