diff options
| author | Bjørn Forsman <bjorn.forsman@gmail.com> | 2011-02-06 20:02:04 +0100 | 
|---|---|---|
| committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-02-06 21:08:28 +0100 | 
| commit | f210ab4e2f332daff3cdbb148c5c2331f05e33ba (patch) | |
| tree | 40e72690ddfd9bebe7f7844ec601f889ddb91e55 | |
| parent | d7c595749dcbbb14bb5cb4ab7100ece8931e6068 (diff) | |
| download | buildroot-novena-f210ab4e2f332daff3cdbb148c5c2331f05e33ba.tar.gz buildroot-novena-f210ab4e2f332daff3cdbb148c5c2331f05e33ba.zip | |
docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case)
Currently, the documentation says $(PKG)_SITE_METHOD should have upper
case names such as SVN or GIT, but the implementation only accepts lower
case svn or git. This fixes the documentation.
Signed-off-by: Bjørn Forsman <bjorn.forsman@gmail.com>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Daniel Nyström <daniel.nystrom@timeterminal.se>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| -rw-r--r-- | docs/buildroot.html | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/docs/buildroot.html b/docs/buildroot.html index b755922c5..b766e410b 100644 --- a/docs/buildroot.html +++ b/docs/buildroot.html @@ -1060,17 +1060,17 @@ $(eval $(call GENTARGETS,package,libfoo,host))        <li><code>LIBFOO_SITE_METHOD</code> may contain the method to        fetch the package source code. It can either -      be <code>WGET</code> (for normal FTP/HTTP downloads of -      tarballs), <code>SVN</code> or <code>GIT</code>. When not +      be <code>wget</code> (for normal FTP/HTTP downloads of +      tarballs), <code>svn</code> or <code>git</code>. When not        specified, it is guessed from the URL given        in <code>LIBFOO_SITE</code>: <code>git://</code> -      and <code>svn://</code> URLs will use the <code>GIT</code> -      and <code>SVN</code> methods respectively. All other URL-types -      will use the <code>WGET</code> method. So for example, in the +      and <code>svn://</code> URLs will use the <code>git</code> +      and <code>svn</code> methods respectively. All other URL-types +      will use the <code>wget</code> method. So for example, in the        case of a package whose source code is available through        Subversion repository on HTTP, one <i>must</i> -      specifiy <code>LIBFOO_SITE_METHOD=SVN</code>. For <code>SVN</code> -      and <code>GIT</code> methods, what Buildroot does is a +      specifiy <code>LIBFOO_SITE_METHOD=svn</code>. For <code>svn</code> +      and <code>git</code> methods, what Buildroot does is a        checkout/clone of the repository which is then tarballed and        stored into the download cache. Next builds will not        checkout/clone again, but will use the tarball | 
