diff options
| -rw-r--r-- | bitbake/lib/bb/fetch/git.py | 2 | ||||
| -rw-r--r-- | bitbake/lib/bb/fetch/svn.py | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/git.py b/bitbake/lib/bb/fetch/git.py index 75a7629223..bb517c9928 100644 --- a/bitbake/lib/bb/fetch/git.py +++ b/bitbake/lib/bb/fetch/git.py | |||
| @@ -52,7 +52,7 @@ class Git(Fetch): | |||
| 52 | """Class to fetch a module or modules from git repositories""" | 52 | """Class to fetch a module or modules from git repositories""" |
| 53 | def supports(self, url, ud, d): | 53 | def supports(self, url, ud, d): |
| 54 | """ | 54 | """ |
| 55 | Check to see if a given url can be fetched with cvs. | 55 | Check to see if a given url can be fetched with git. |
| 56 | """ | 56 | """ |
| 57 | return ud.type in ['git'] | 57 | return ud.type in ['git'] |
| 58 | 58 | ||
diff --git a/bitbake/lib/bb/fetch/svn.py b/bitbake/lib/bb/fetch/svn.py index b95de2a79b..a5dc91aaff 100644 --- a/bitbake/lib/bb/fetch/svn.py +++ b/bitbake/lib/bb/fetch/svn.py | |||
| @@ -4,6 +4,10 @@ | |||
| 4 | """ | 4 | """ |
| 5 | BitBake 'Fetch' implementations | 5 | BitBake 'Fetch' implementations |
| 6 | 6 | ||
| 7 | This implementation is for svn. It is based on the cvs implementation. | ||
| 8 | |||
| 9 | Copyright (C) 2004 Marcin Juszkiewicz | ||
| 10 | |||
| 7 | Classes for obtaining upstream sources for the | 11 | Classes for obtaining upstream sources for the |
| 8 | BitBake build tools. | 12 | BitBake build tools. |
| 9 | 13 | ||
