source: gs2-extensions/gnome-lib/trunk/src/CASCADE-MAKE.sh@ 23096

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

Upgraded this extension to use the exthome variable correctly and a few other minor fixes

  • Property svn:executable set to *
File size: 284 bytes
RevLine 
[22811]1#!/bin/bash
2
[23076]3source devel.bash
[22816]4
[22811]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
[23096]14done
15
16if [ $makedist = "1" ] ; then
17 toplevel_make_dist
18fi
Note: See TracBrowser for help on using the repository browser.