[open-ils-commits] r10493 - trunk

svn at svn.open-ils.org svn at svn.open-ils.org
Sat Aug 30 15:08:06 EDT 2008


Author: dbs
Date: 2008-08-30 15:08:02 -0400 (Sat, 30 Aug 2008)
New Revision: 10493

Removed:
   trunk/configoptions.sh
Log:
Removing ephemeral file, per kbeswick's nod


Deleted: trunk/configoptions.sh
===================================================================
--- trunk/configoptions.sh	2008-08-30 16:48:14 UTC (rev 10492)
+++ trunk/configoptions.sh	2008-08-30 19:08:02 UTC (rev 10493)
@@ -1,67 +0,0 @@
-#!/bin/bash
-
-echo "------------------------------------------"
-echo "Options selector for Open-ILS configure"
-echo "------------------------------------------"
-echo " "
-echo "Install Open-ILS ALL? (y/n) "
-read X; 
-if [ $X == "y" ] ; then 
-TARGS=${TARGS}" --enable-openils-all"
-fi
-echo "Install Open-ILS CORE? (y/n) "
-read X; 
-if [ $X == "n" ] ; then 
-TARGS=${TARGS}" --disable-openils-core" 
-fi
-echo "Install Open-ILS WEB? (y/n) "
-read X;
-if [ $X == "n" ] ; then 
-TARGS=${TARGS}" --disable-openils-web" 
-fi
-echo "Install Open-ILS DB? (y/n) "
-read X;
-if [ $X == "n" ] ; then
-TARGS=${TARGS}" --disable-openils-db"
-fi
-echo "Install Open-ILS MARCDUMPER? (y/n) "
-read X;
-if [ $X == "y" ] ; then
-TARGS=${TARGS}" --enable-openils-marcdumper"
-fi
-echo "Install Open-ILS REPORTER? (y/n) "
-read X;
-if [ $X == "y" ] ; then
-TARGS=${TARGS}" --enable-openils-reporter"
-elif [ $X == "n" ] ; then
-TARGS=${TARGS}" --disable-openils-reporter"
-fi
-echo "Install Open-ILS XUL CLIENT? (y/n) "
-read X;
-if [ $X == "y" ] ; then
-TARGS=${TARGS}" --enable-openils-client-xul"
-fi
-echo "Install Open-ILS XUL SERVER? (y/n) "
-read X;
-if [ $X == "y" ] ; then
-TARGS=${TARGS}" --enable-openils-server-xul"
-elif [ $X == "n" ] ; then
-TARGS=${TARGS}" --disable-openils-server-xul"
-fi
-echo "Install EVERGREEN CORE? (y/n) "
-read X;
-if [ $X == "y" ] ; then
-TARGS=${TARGS}" --enable-evergreen-core"
-fi
-echo "Install EVERGREEN XUL CLIENT? (y/n) "
-read X;
-if [ $X == "y" ] ; then
-TARGS=${TARGS}" --enable-evergreen-xul-client"
-fi
-
-
-echo ${TARGS}
-./configure --with-dbver=81 --with-dbuser=evergreen --with-dbpw=evergreen ${TARGS}
-make
-sudo make install
-



More information about the open-ils-commits mailing list