source: trunk/gsdl3/gs3-configure.sh@ 6449

Last change on this file since 6449 was 6445, checked in by kjdon, 20 years ago

sample script to do the configure before we have a top level configure

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 361 bytes
Line 
1#!/bin/sh
2
3echo "This script should be replaced by a top level configure!!"
4
5#check that GSDL3HOME is set
6if test -z "$GSDL3HOME" ; then
7 echo "You need to 'source gs3-setup.sh' before running this script"
8 exit;
9fi
10
11cd packages/mgpp
12./configure --prefix $GSDL3HOME
13cd ../mg
14./configure --prefix $GSDL3HOME
15cd $GSDL3HOME
16
17# now do building stuff
18./configure
19
Note: See TracBrowser for help on using the repository browser.