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

Last change on this file since 6489 was 6481, checked in by nzdl, 20 years ago

added autoconf before configure

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 370 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
18autoconf
19./configure
20
Note: See TracBrowser for help on using the repository browser.