Correct varname for PostgreSQL RPMs
authorDan Scott <dan@coffeecode.net>
Thu, 21 Jul 2011 21:16:32 +0000 (17:16 -0400)
committerDan Scott <dscott@laurentian.ca>
Mon, 10 Oct 2011 20:44:02 +0000 (16:44 -0400)
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 <dscott@laurentian.ca>
Signed-off-by: Thomas Berezansky <tsbere@mvlc.org>
Open-ILS/src/extras/Makefile.install

index c4cf63f..a2c9160 100644 (file)
@@ -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