summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsnehring <7978778+snehring@users.noreply.github.com>2022-11-09 08:25:22 -0600
committerGitHub <noreply@github.com>2022-11-09 15:25:22 +0100
commit9ca7165ef0537c168f63ab61663a04da4f74cb5b (patch)
tree35413225302c19889c3f914e6c3a1bfc15aafb76
parentd1d668a9d57e984a225eeef153d93cb315e03dfb (diff)
downloadspack-9ca7165ef0537c168f63ab61663a04da4f74cb5b.tar.gz
spack-9ca7165ef0537c168f63ab61663a04da4f74cb5b.tar.bz2
spack-9ca7165ef0537c168f63ab61663a04da4f74cb5b.tar.xz
spack-9ca7165ef0537c168f63ab61663a04da4f74cb5b.zip
postgresql: fix weird spack message (#33770)
-rw-r--r--var/spack/repos/builtin/packages/postgresql/package.py2
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