Eliminated unnecessary differences in pull request
This commit is contained in:
parent
e32c59f805
commit
ce8df65d7b
3 changed files with 1 additions and 3 deletions
|
@ -37,7 +37,6 @@
|
|||
|
||||
from spack.spec import Spec
|
||||
from spack.error import SpackError
|
||||
from spack.database import Database
|
||||
|
||||
|
||||
def _check_concrete(spec):
|
||||
|
@ -154,7 +153,6 @@ def remove_install_directory(self, spec):
|
|||
path = os.path.dirname(path)
|
||||
|
||||
|
||||
|
||||
class YamlDirectoryLayout(DirectoryLayout):
|
||||
"""Lays out installation directories like this::
|
||||
<install root>/
|
||||
|
|
|
@ -557,7 +557,6 @@ def virtual_dependencies(self, visited=None):
|
|||
|
||||
@property
|
||||
def installed(self):
|
||||
print self.prefix
|
||||
return os.path.isdir(self.prefix)
|
||||
|
||||
|
||||
|
|
|
@ -427,6 +427,7 @@ def __init__(self, spec_like, *dep_like, **kwargs):
|
|||
spec = dep if isinstance(dep, Spec) else Spec(dep)
|
||||
self._add_dependency(spec)
|
||||
|
||||
|
||||
#
|
||||
# Private routines here are called by the parser when building a spec.
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue