diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-28 11:56:45 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-28 12:01:07 +0000 |
commit | 2e27c4bf233351ecb78c39aa90a87b7b3aeb806d (patch) | |
tree | 0880d8177284994821509c76a8df40a08616fb86 /bitbake/lib | |
parent | 1c060d738a0763b8f029a40c553e0ce3502aef88 (diff) | |
download | poky-2e27c4bf233351ecb78c39aa90a87b7b3aeb806d.tar.gz |
bitbake: fetch2/npm: Enable fetcher
For some reason the enablement piece of the patch went missing, add it.
(Bitbake rev: 0270b5a3873ed0aeca3a66198c87a6164fb644b8)
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, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index b18b406583..d36655071b 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -1741,6 +1741,7 @@ from . import hg | |||
1741 | from . import osc | 1741 | from . import osc |
1742 | from . import repo | 1742 | from . import repo |
1743 | from . import clearcase | 1743 | from . import clearcase |
1744 | from . import npm | ||
1744 | 1745 | ||
1745 | methods.append(local.Local()) | 1746 | methods.append(local.Local()) |
1746 | methods.append(wget.Wget()) | 1747 | methods.append(wget.Wget()) |
@@ -1757,3 +1758,4 @@ methods.append(hg.Hg()) | |||
1757 | methods.append(osc.Osc()) | 1758 | methods.append(osc.Osc()) |
1758 | methods.append(repo.Repo()) | 1759 | methods.append(repo.Repo()) |
1759 | methods.append(clearcase.ClearCase()) | 1760 | methods.append(clearcase.ClearCase()) |
1761 | methods.append(npm.Npm()) | ||