fix usage of self.build_directory in espressopp and astyle (#3053)

This commit is contained in:
Denis Davydov
2017-02-08 03:22:52 +01:00
committed by Todd Gamblin
parent b1f5b5f75b
commit 4264051954
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ def cmake_args(self):
return ['-DEXTERNAL_MPI4PY=ON', '-DEXTERNAL_BOOST=ON']
def build(self, spec, prefix):
with working_dir(self.build_directory()):
with working_dir(self.build_directory):
make()
if '+ug' in spec:
make("ug", parallel=False)