manual: don't use a comment at the end of the version variable assignment
authorFabio Porcedda <fabio.porcedda@gmail.com>
Sun, 26 Apr 2015 23:40:21 +0000 (01:40 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Mon, 27 Apr 2015 21:31:28 +0000 (23:31 +0200)
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>
docs/manual/adding-packages-tips.txt

index 6f5e785bb66ef6cf81ee55a2f05c327483a2fa1f..6699951d7ae07cbc9f25e5a77e76f6a89da2b966 100644 (file)
@@ -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))
 ------------------------