diff options
author | Vanveerdeghem, Simon <Simon.Vanveerdeghem@barco.com> | 2013-04-12 08:35:38 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-03 16:24:13 +0100 |
commit | 67ed18e6560ce4506d03cffa359026d6cf87f0e4 (patch) | |
tree | cc930ae6e99f6f7591d3b689114b5c76ce99a18c | |
parent | 7709342e69d04117eb1f5a37a55e9cfd0b562355 (diff) | |
download | poky-67ed18e6560ce4506d03cffa359026d6cf87f0e4.tar.gz |
bitbake: fetch2/svn: Do not save authentication
(Bitbake rev: a9b1e7c2ad13ff47acb629bae082d4f96e174f99)
Signed-off-by: Simon Vanveerdeghem <simon.vanveerdeghem@barco.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | bitbake/lib/bb/fetch2/svn.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/svn.py b/bitbake/lib/bb/fetch2/svn.py index ea5902e05b..cbf929e9c5 100644 --- a/bitbake/lib/bb/fetch2/svn.py +++ b/bitbake/lib/bb/fetch2/svn.py | |||
@@ -81,6 +81,8 @@ class Svn(FetchMethod): | |||
81 | 81 | ||
82 | options = [] | 82 | options = [] |
83 | 83 | ||
84 | options.append("--no-auth-cache") | ||
85 | |||
84 | if ud.user: | 86 | if ud.user: |
85 | options.append("--username %s" % ud.user) | 87 | options.append("--username %s" % ud.user) |
86 | 88 | ||