Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions easybuild/easyblocks/generic/bundle.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,6 @@ def install_step(self):
# make sure we can build in parallel
comp.set_parallel()

# figure out correct start directory
comp.guess_start_dir()

# need to run fetch_patches to ensure per-component patches are applied
comp.fetch_patches()

Expand Down Expand Up @@ -299,8 +296,8 @@ def install_step(self):
if not found:
raise EasyBuildError("Failed to find spec for source %s for component %s", comp_src_fn, comp.name)

# location of first unpacked source is used to determine where to apply patch(es)
comp.src[-1]['finalpath'] = comp.cfg['start_dir']
# figure out correct start directory
comp.guess_start_dir()

# check if sanity checks are enabled for the component
if self.cfg['sanity_check_all_components'] or comp.cfg['name'] in self.cfg['sanity_check_components']:
Expand Down