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
RevLine 
[6445]1#!/bin/sh
2
3echo "This script should be replaced by a top level configure!!"
4
[6913]5if [ ! -f gs3-setup.sh ]; then
6 echo "You must run this script from within the Greenstone home directory"
7 exit 1
8fi
9
[6445]10#check that GSDL3HOME is set
11if test -z "$GSDL3HOME" ; then
[6913]12 source gs3-setup.sh
[6445]13fi
14
[6522]15echo ""
16echo "configuring mgpp"
17echo ""
[6445]18cd packages/mgpp
19./configure --prefix $GSDL3HOME
[6522]20echo ""
21echo "configuring mg"
22echo ""
[6445]23cd ../mg
24./configure --prefix $GSDL3HOME
25cd $GSDL3HOME
26
27# now do building stuff
[6481]28autoconf
[6522]29./configure --prefix $GSDL3HOME
[6445]30
[6522]31
Note: See TracBrowser for help on using the repository browser.