source: gs2-extensions/gsdl-amp/trunk/packages/CASCADE-MAKE.sh@ 23003

Last change on this file since 23003 was 23003, checked in by sjm84, 14 years ago

Various changes to the amp extension to make it compatible with having previously installed mysql extension

File size: 326 bytes
Line 
1#!/bin/bash
2
3list=
4if [ "x$COMPILE_UP_MYSQL" = "x1" ] ; then
5 list="MYSQL LIBPNG APACHE PHP"
6else
7 list="LIBPNG APACHE PHP"
8fi
9
10for d in $list ; do
11 echo " Running CASCADE-MAKE/$d.sh $*"
12
13 ./CASCADE-MAKE/$d.sh $*
14
15 if [ $? != 0 ] ; then
16 echo " Error encountered running CASCADE-MAKE/$d.sh"
17 exit 1
18 fi
19done
Note: See TracBrowser for help on using the repository browser.