diff options
Diffstat (limited to 'var/spack/repos/builtin/packages/atom-dft/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/atom-dft/package.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/var/spack/repos/builtin/packages/atom-dft/package.py b/var/spack/repos/builtin/packages/atom-dft/package.py index d16d3283dc..644b064fb7 100644 --- a/var/spack/repos/builtin/packages/atom-dft/package.py +++ b/var/spack/repos/builtin/packages/atom-dft/package.py @@ -22,9 +22,7 @@ # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ############################################################################## - from spack import * -import shutil class AtomDft(MakefilePackage): @@ -40,7 +38,7 @@ class AtomDft(MakefilePackage): depends_on('xmlf90') def edit(self, spec, prefix): - shutil.copyfile('arch.make.sample', 'arch.make') + copy('arch.make.sample', 'arch.make') @property def build_targets(self): |