[open-ils-commits] r11385 - trunk/Open-ILS/src/extras
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Dec 2 23:49:17 EST 2008
Author: dbs
Date: 2008-12-02 23:49:14 -0500 (Tue, 02 Dec 2008)
New Revision: 11385
Modified:
trunk/Open-ILS/src/extras/Makefile.install
Log:
Prevent mod_deflate from mysteriously causing problems in interfaces like Conify
Modified: trunk/Open-ILS/src/extras/Makefile.install
===================================================================
--- trunk/Open-ILS/src/extras/Makefile.install 2008-12-03 04:27:09 UTC (rev 11384)
+++ trunk/Open-ILS/src/extras/Makefile.install 2008-12-03 04:49:14 UTC (rev 11385)
@@ -197,6 +197,9 @@
proxy_http\
rewrite
+DEB_APACHE_DISMODS = \
+ deflate
+
# Chronically unpackaged CPAN modules
CPAN_MODULES = \
Business::CreditCard::Object \
@@ -290,6 +293,8 @@
debian_sys_config:
# link the apache modules in
for m in $(DEB_APACHE_MODS); do a2enmod $$m; done;
+ # keep the bad apache modules away
+ for m in $(DEB_APACHE_DISMODS); do a2dismod $$m; done;
# Install the debian-specific dependencies
install_debs:
More information about the open-ils-commits
mailing list