diff options
author | Alex Richert <alexrichert@users.noreply.github.com> | 2024-04-20 12:34:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-20 21:34:07 +0200 |
commit | 7c1a3094536730be698809daf2c3df267dd8a91b (patch) | |
tree | dc5ae6a38f9640273b5678a95792216fddd70ce9 /var | |
parent | 78b6fa96e519fb37f483e20a316c6c5c27eb522a (diff) | |
download | spack-7c1a3094536730be698809daf2c3df267dd8a91b.tar.gz spack-7c1a3094536730be698809daf2c3df267dd8a91b.tar.bz2 spack-7c1a3094536730be698809daf2c3df267dd8a91b.tar.xz spack-7c1a3094536730be698809daf2c3df267dd8a91b.zip |
perl: remove mkdirp from setup_dependent_package (#43733)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/perl/package.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/var/spack/repos/builtin/packages/perl/package.py b/var/spack/repos/builtin/packages/perl/package.py index ad44d760f3..ff16227d1c 100644 --- a/var/spack/repos/builtin/packages/perl/package.py +++ b/var/spack/repos/builtin/packages/perl/package.py @@ -455,10 +455,6 @@ class Perl(Package): # Perl doesn't use Autotools, it should subclass Package # Add variables for library directory module.perl_lib_dir = dependent_spec.prefix.lib.perl5 - # Make the site packages directory for extensions, - # if it does not exist already. - mkdirp(module.perl_lib_dir) - def setup_build_environment(self, env): if sys.platform == "win32": env.append_path("PATH", self.prefix.bin) |