From 359f3c24d7124d8bbe73aba2f8e1fdf0fa1f4e6e Mon Sep 17 00:00:00 2001 From: "Vanveerdeghem, Simon" Date: Fri, 12 Apr 2013 08:35:38 +0200 Subject: [PATCH] bitbake: fetch2/svn: Do not save authentication (Bitbake rev: a9b1e7c2ad13ff47acb629bae082d4f96e174f99) Signed-off-by: Simon Vanveerdeghem Signed-off-by: Richard Purdie --- bitbake/lib/bb/fetch2/svn.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bitbake/lib/bb/fetch2/svn.py b/bitbake/lib/bb/fetch2/svn.py index ea5902e..cbf929e 100644 --- a/bitbake/lib/bb/fetch2/svn.py +++ b/bitbake/lib/bb/fetch2/svn.py @@ -81,6 +81,8 @@ class Svn(FetchMethod): options = [] + options.append("--no-auth-cache") + if ud.user: options.append("--username %s" % ud.user) -- 2.7.4