From: Fabio Porcedda Date: Sun, 26 Apr 2015 23:40:21 +0000 (+0200) Subject: manual: don't use a comment at the end of the version variable assignment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=375728d0513bf53f058f07dcc88c426614dc306e;p=buildroot.git 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 Reported-by: Yann E. MORIN Signed-off-by: Thomas Petazzoni --- 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,,,$(FOO_VERSION)) ------------------------