From abad3f6f26c32fe86d0cf19ac04e274e3d3ba60d Mon Sep 17 00:00:00 2001 From: dbs Date: Sat, 30 Aug 2008 19:08:02 +0000 Subject: [PATCH] Removing ephemeral file, per kbeswick's nod git-svn-id: svn://svn.open-ils.org/ILS/trunk@10493 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- configoptions.sh | 67 ------------------------------------------------ 1 file changed, 67 deletions(-) delete mode 100644 configoptions.sh diff --git a/configoptions.sh b/configoptions.sh deleted file mode 100644 index 51d04f403a..0000000000 --- a/configoptions.sh +++ /dev/null @@ -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 - -- 2.43.2