source: gs2-extensions/subversion/trunk/src/CASCADE-MAKE.sh

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

Increased robustness in running these setup files

  • Property svn:executable set to *
File size: 299 bytes
RevLine 
[23043]1#!/bin/bash
2
[28195]3source ./devel.bash
[23043]4
5for d in packages ; do
6 echo "Running $d/CASCADE-MAKE.sh"
7
8 (cd $d ; ./CASCADE-MAKE.sh $*)
9
10 if [ $? != 0 ] ; then
11 echo "Error encountered running $d/CASCADE-MAKE.sh"
12 exit 1
13 fi
14done
15
[23094]16if [ $makedist = "1" ] ; then
[23108]17 default_toplevel_make_dist $GSDLOS
[23094]18fi
Note: See TracBrowser for help on using the repository browser.