From 4f14bcf95254569d7023e634743d3c4279e8bf12 Mon Sep 17 00:00:00 2001 From: Reese Baird Date: Tue, 11 Oct 2016 10:50:32 -0700 Subject: [PATCH] add %(vsc-install) to sources (#289) --- components/dev-tools/easybuild/SOURCES/bootstrap_eb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/dev-tools/easybuild/SOURCES/bootstrap_eb.py b/components/dev-tools/easybuild/SOURCES/bootstrap_eb.py index eaf065cffc..0ed9b4200f 100644 --- a/components/dev-tools/easybuild/SOURCES/bootstrap_eb.py +++ b/components/dev-tools/easybuild/SOURCES/bootstrap_eb.py @@ -386,7 +386,7 @@ def stage2(tmpdir, templates, install_path, distribute_egg_dir, sourcepath): f = open(ebfile, "w") templates.update({ 'source_urls': '\n'.join(["'%s/%s/%s'," % (PYPI_SOURCE_URL, pkg[0], pkg) for pkg in EASYBUILD_PACKAGES]), - 'sources': "%(vsc-base)s%(easybuild-framework)s%(easybuild-easyblocks)s%(easybuild-easyconfigs)s" % templates, + 'sources': "%(vsc-install)s%(vsc-base)s%(easybuild-framework)s%(easybuild-easyblocks)s%(easybuild-easyconfigs)s" % templates, 'pythonpath': distribute_egg_dir, }) f.write(EASYBUILD_EASYCONFIG_TEMPLATE % templates)