diff options
author | Fabio Porcedda <fabio.porcedda@gmail.com> | 2015-04-27 01:40:21 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-27 23:31:28 +0200 |
commit | 375728d0513bf53f058f07dcc88c426614dc306e (patch) | |
tree | 11313a34a21769cae15ef5a88b890e54e7467f78 /docs/manual | |
parent | a14570fe719848b4c8a4522565ac9fd39280c6f0 (diff) | |
download | buildroot-375728d0513bf53f058f07dcc88c426614dc306e.tar.gz buildroot-375728d0513bf53f058f07dcc88c426614dc306e.zip |
manual: don't use a comment at the end of the version variable assignment
The comment at the end of the version string assigment could lead to a download
failure so don't use it as a example.
Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com>
Reported-by: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'docs/manual')
-rw-r--r-- | docs/manual/adding-packages-tips.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/manual/adding-packages-tips.txt b/docs/manual/adding-packages-tips.txt index 6f5e785bb6..6699951d7a 100644 --- a/docs/manual/adding-packages-tips.txt +++ b/docs/manual/adding-packages-tips.txt @@ -42,7 +42,8 @@ on GitHub. As GitHub is known to have changed download mechanisms in the past, the 'github' helper function should be used as shown below. ------------------------ -FOO_VERSION = v1.0 # tag or full commit ID +# Use a tag or a full commit ID +FOO_VERSION = v1.0 FOO_SITE = $(call github,<user>,<package>,$(FOO_VERSION)) ------------------------ |