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

Last change on this file since 7326 was 6915, checked in by kjdon, 20 years ago

oops, last commit I left in an exit; that wasn't supposed to be there

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 538 bytes
Line 
1#!/bin/sh
2
3echo "This script should be replaced by a top level configure!!"
4
5if [ ! -f gs3-setup.sh ]; then
6 echo "You must run this script from within the Greenstone home directory"
7 exit 1
8fi
9
10#check that GSDL3HOME is set
11if test -z "$GSDL3HOME" ; then
12 source gs3-setup.sh
13fi
14
15echo ""
16echo "configuring mgpp"
17echo ""
18cd packages/mgpp
19./configure --prefix $GSDL3HOME
20echo ""
21echo "configuring mg"
22echo ""
23cd ../mg
24./configure --prefix $GSDL3HOME
25cd $GSDL3HOME
26
27# now do building stuff
28autoconf
29./configure --prefix $GSDL3HOME
30
31
Note: See TracBrowser for help on using the repository browser.