diff options
author | Harmen Stoppels <me@harmenstoppels.nl> | 2024-04-22 16:05:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-22 16:05:32 +0200 |
commit | 69f417b26a4e89a26eb61e299a8b6aac2c87fb65 (patch) | |
tree | 7d5d8ff3a95007fa31a165bce5494e40f6ec5c5e | |
parent | 80b5106611380c88cd519ec63940b8c43d36195d (diff) | |
download | spack-69f417b26a4e89a26eb61e299a8b6aac2c87fb65.tar.gz spack-69f417b26a4e89a26eb61e299a8b6aac2c87fb65.tar.bz2 spack-69f417b26a4e89a26eb61e299a8b6aac2c87fb65.tar.xz spack-69f417b26a4e89a26eb61e299a8b6aac2c87fb65.zip |
view: dont warn about externals (#43771)
since it's the status quo on linux after libc as external by default
-rw-r--r-- | lib/spack/spack/filesystem_view.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/spack/spack/filesystem_view.py b/lib/spack/spack/filesystem_view.py index 21d001fc9f..81a330b4a9 100644 --- a/lib/spack/spack/filesystem_view.py +++ b/lib/spack/spack/filesystem_view.py @@ -662,9 +662,6 @@ class SimpleFilesystemView(FilesystemView): return # Drop externals - for s in specs: - if s.external: - tty.warn("Skipping external package: " + s.short_spec) specs = [s for s in specs if not s.external] self._sanity_check_view_projection(specs) |