Changeset 623

Show
Ignore:
Timestamp:
05/03/07 15:13:06 (2 years ago)
Author:
sacha
Message:

better documentation

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/bin/make-install-c.sh

    r622 r623  
    112112    echo "Downloading Berekely XML Database" 
    113113    wget $DBXML_URL 
    114 #    cp $current/../xml-db/dbxml-2.3.10.tar.gz . 
    115114    tar xvfz dbxml-2.3.10.tar.gz 
    116115    cd $DBXML_PATH 
    117     echo "Continue building ? The compilation will take about 20 minutes (Core 2 Duo with 2GB Ram reference machine)." 
     116    echo "The compilation will take about 20 minutes (Core 2 Duo with 2GB Ram reference machine)." 
    118117    sh buildall.sh 
    119118    cd $current 
     
    122121check_installed_dbxml 
    123122if [ $? -eq 0 ]; then 
    124     echo "Berkeley XML Database is installed." 
     123    echo "Berkeley XML Database is already installed." 
    125124else 
    126     echo "Berkeley XML Database is not installed.
     125    echo "Berkeley XML Database is not installed. Installation script will download, compile, and install the database.
    127126    install_berkeley_xml_database 
    128127fi 
    129128 
    130129exit 
    131  
    132130 
    133131WD=$(pwd)