Changeset 623
- Timestamp:
- 05/03/07 15:13:06 (2 years ago)
- Files:
-
- trunk/bin/make-install-c.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/bin/make-install-c.sh
r622 r623 112 112 echo "Downloading Berekely XML Database" 113 113 wget $DBXML_URL 114 # cp $current/../xml-db/dbxml-2.3.10.tar.gz .115 114 tar xvfz dbxml-2.3.10.tar.gz 116 115 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)." 118 117 sh buildall.sh 119 118 cd $current … … 122 121 check_installed_dbxml 123 122 if [ $? -eq 0 ]; then 124 echo "Berkeley XML Database is installed."123 echo "Berkeley XML Database is already installed." 125 124 else 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." 127 126 install_berkeley_xml_database 128 127 fi 129 128 130 129 exit 131 132 130 133 131 WD=$(pwd)
