From 10114285701cf1312f9e058ac8ed30f114ead4ab Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Thu, 21 Jul 2011 17:16:32 -0400 Subject: [PATCH] Correct varname for PostgreSQL RPMs On Fedora, Red Hat, and CentOS, we were still trying to install the set of PostgreSQL RPMs for PostgreSQL 8.4 using PGSQL_84_RPMS. This had been updated to PGSQL_90_RPMS to match the updated database version - using the right varname resolves the problem (at least on Fedora). Signed-off-by: Dan Scott Signed-off-by: Thomas Berezansky --- Open-ILS/src/extras/Makefile.install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Open-ILS/src/extras/Makefile.install b/Open-ILS/src/extras/Makefile.install index c4cf63ff2a..a2c91600e5 100644 --- a/Open-ILS/src/extras/Makefile.install +++ b/Open-ILS/src/extras/Makefile.install @@ -441,7 +441,7 @@ install_fedora_rpms: yum -y install $(FEDORA_RPMS) install_fedora_pgsql_server: - yum -y install $(PGSQL_84_RPMS) + yum -y install $(PGSQL_90_RPMS) # CENTOS install_centos_rpms: @@ -462,14 +462,14 @@ install_centos_pgsql: wget $(PGSQL_HOST)/$(PGSQL_CENTOS) rpm -Uvh --force ./$(PGSQL_CENTOS) yum update -y - yum -y install $(PGSQL_84_RPMS) + yum -y install $(PGSQL_90_RPMS) install_redhat_pgsql: if [ $(LBITS) -eq 64 ]; then yum remove -y postgresql-libs-8.1*i386 apr-util-devel-*i386 ; fi; wget $(PGSQL_HOST)/$(PGSQL_REDHAT) rpm -Uvh --force ./$(PGSQL_REDHAT) yum update -y - yum -y install $(PGSQL_84_RPMS) + yum -y install $(PGSQL_90_RPMS) install_centos_perl: for m in $(CENTOS_PERL); do perl -MCPAN -e "install \"$$m\";"; done -- 2.43.2