source: gs2-extensions/imagemagick/trunk/src/CASCADE-MAKE.sh@ 26865

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

Added in the aspectpad.sh script (from 'Fred') to help with the panorama viewer part of Greenstone3

  • Property svn:executable set to *
File size: 513 bytes
Line 
1#!/bin/bash
2
3source devel.bash
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
16if [ ! -d $GEXTIMAGEMAGICK_INSTALLED/script ] ; then
17 echo "Creating 'script' folder in installed area"
18 mkdir $GEXTIMAGEMAGICK_INSTALLED/script
19fi
20
21/bin/cp bin/script/*.sh $GEXTIMAGEMAGICK_INSTALLED/script/.
22
23
24if [ $makedist = "1" ] ; then
25 default_toplevel_make_dist $GSDLOS
26fi
Note: See TracBrowser for help on using the repository browser.