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

Last change on this file since 6864 was 6522, checked in by kjdon, 20 years ago

added some print outs

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 469 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
11echo ""
12echo "configuring mgpp"
13echo ""
14cd packages/mgpp
15./configure --prefix $GSDL3HOME
16echo ""
17echo "configuring mg"
18echo ""
19cd ../mg
20./configure --prefix $GSDL3HOME
21cd $GSDL3HOME
22
23# now do building stuff
24autoconf
25./configure --prefix $GSDL3HOME
26
27
Note: See TracBrowser for help on using the repository browser.