diff options
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/fetch2/svn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/svn.py b/bitbake/lib/bb/fetch2/svn.py index 59ce93160c..96d666ba33 100644 --- a/bitbake/lib/bb/fetch2/svn.py +++ b/bitbake/lib/bb/fetch2/svn.py | |||
@@ -145,7 +145,7 @@ class Svn(FetchMethod): | |||
145 | 145 | ||
146 | if not ("externals" in ud.parm and ud.parm["externals"] == "nowarn"): | 146 | if not ("externals" in ud.parm and ud.parm["externals"] == "nowarn"): |
147 | # Warn the user if this had externals (won't catch them all) | 147 | # Warn the user if this had externals (won't catch them all) |
148 | output = runfetchcmd("svn propget svn:externals", d, workdir=ud.moddir) | 148 | output = runfetchcmd("svn propget svn:externals || true", d, workdir=ud.moddir) |
149 | if output: | 149 | if output: |
150 | if "--ignore-externals" in svnfetchcmd.split(): | 150 | if "--ignore-externals" in svnfetchcmd.split(): |
151 | bb.warn("%s contains svn:externals." % ud.url) | 151 | bb.warn("%s contains svn:externals." % ud.url) |