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

Last change on this file since 28344 was 28344, checked in by davidb, 11 years ago

Tweak to settings to cope with 'fussy' CURL source code

File size: 338 bytes
Line 
1#!/bin/bash
2
3list=
4if [ "x$COMPILE_UP_MYSQL" = "x1" ] ; then
5 list="MYSQL LIBPNG APACHE CURL LIBXML 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.