diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-09 01:23:56 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-09 01:23:56 +0000 |
commit | 29ed2c6e9a0c3cc57c5bbaf3c53e1cff8586c51c (patch) | |
tree | 10bd1e0e82df12de775dc7f0cef92edd917386e2 /bitbake/lib | |
parent | 906285ff00d6ffd3fd7713af52250e7c6503edb7 (diff) | |
download | poky-29ed2c6e9a0c3cc57c5bbaf3c53e1cff8586c51c.tar.gz |
bitbake/fetch2: Fix negated if check for BB_FETCH_PREMIRRORONLY
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index 9a4acc2ede..ef9d75f3fe 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -872,7 +872,7 @@ class Fetch(object): | |||
872 | mirrors = mirror_from_string(bb.data.getVar('PREMIRRORS', self.d, True)) | 872 | mirrors = mirror_from_string(bb.data.getVar('PREMIRRORS', self.d, True)) |
873 | localpath = try_mirrors(self.d, ud, mirrors, False) | 873 | localpath = try_mirrors(self.d, ud, mirrors, False) |
874 | 874 | ||
875 | if bb.data.getVar("BB_FETCH_PREMIRRORONLY", self.d, True) is None: | 875 | if bb.data.getVar("BB_FETCH_PREMIRRORONLY", self.d, True) is not None: |
876 | bb.data.setVar("BB_NO_NETWORK", "1", self.d) | 876 | bb.data.setVar("BB_NO_NETWORK", "1", self.d) |
877 | 877 | ||
878 | if not localpath and m.need_update(u, ud, self.d): | 878 | if not localpath and m.need_update(u, ud, self.d): |