diff options
author | snehring <7978778+snehring@users.noreply.github.com> | 2022-11-09 08:25:22 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-09 15:25:22 +0100 |
commit | 9ca7165ef0537c168f63ab61663a04da4f74cb5b (patch) | |
tree | 35413225302c19889c3f914e6c3a1bfc15aafb76 /var | |
parent | d1d668a9d57e984a225eeef153d93cb315e03dfb (diff) | |
download | spack-9ca7165ef0537c168f63ab61663a04da4f74cb5b.tar.gz spack-9ca7165ef0537c168f63ab61663a04da4f74cb5b.tar.bz2 spack-9ca7165ef0537c168f63ab61663a04da4f74cb5b.tar.xz spack-9ca7165ef0537c168f63ab61663a04da4f74cb5b.zip |
postgresql: fix weird spack message (#33770)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/postgresql/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/postgresql/package.py b/var/spack/repos/builtin/packages/postgresql/package.py index c162567fad..0fce4210b6 100644 --- a/var/spack/repos/builtin/packages/postgresql/package.py +++ b/var/spack/repos/builtin/packages/postgresql/package.py @@ -100,7 +100,7 @@ class Postgresql(AutotoolsPackage): with working_dir(os.path.join("src", subdir)): make("install") else: - AutotoolsPackage.install(self, spec, prefix) + super(Postgresql, self).install(spec, prefix) def setup_run_environment(self, env): spec = self.spec |