From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Tue, 1 Feb 2011 23:22:39 +0100 Subject: [Buildroot] [PATCH 1/2] docs: fix $(PKG)_SITE_METHOD names (UPPER CASE => lower case) Message-ID: <1296598960-356-1-git-send-email-bjorn.forsman@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net 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 --- docs/buildroot.html | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/buildroot.html b/docs/buildroot.html index 36297e0..de6b1d7 100644 --- a/docs/buildroot.html +++ b/docs/buildroot.html @@ -1060,17 +1060,17 @@ $(eval $(call GENTARGETS,package,libfoo,host))
  • LIBFOO_SITE_METHOD may contain the method to fetch the package source code. It can either - be WGET (for normal FTP/HTTP downloads of - tarballs), SVN or GIT. When not + be wget (for normal FTP/HTTP downloads of + tarballs), svn or git. When not specified, it is guessed from the URL given in LIBFOO_SITE: git:// - and svn:// URLs will use the GIT - and SVN methods respectively. All other URL-types - will use the WGET method. So for example, in the + and svn:// URLs will use the git + and svn methods respectively. All other URL-types + will use the wget method. So for example, in the case of a package whose source code is available through Subversion repository on HTTP, one must - specifiy LIBFOO_SITE_METHOD=SVN. For SVN - and GIT methods, what Buildroot does is a + specifiy LIBFOO_SITE_METHOD=svn. For svn + and git 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 -- 1.7.1