[open-ils-commits] [GIT] Evergreen ILS branch master updated. 10114285701cf1312f9e058ac8ed30f114ead4ab
Evergreen Git
git at git.evergreen-ils.org
Mon Oct 10 16:44:14 EDT 2011
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, master has been updated
via 10114285701cf1312f9e058ac8ed30f114ead4ab (commit)
from 4e6dcbfb6ea318afca3303c313c6d57615de93ff (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 10114285701cf1312f9e058ac8ed30f114ead4ab
Author: Dan Scott <dan at coffeecode.net>
Date: Thu Jul 21 17:16:32 2011 -0400
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 <dscott at laurentian.ca>
Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>
diff --git a/Open-ILS/src/extras/Makefile.install b/Open-ILS/src/extras/Makefile.install
index c4cf63f..a2c9160 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
-----------------------------------------------------------------------
Summary of changes:
Open-ILS/src/extras/Makefile.install | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list