PlaneShift

Development => Development Deliberation => Topic started by: spyke01 on July 14, 2006, 05:14:58 am

Title: Problem with linux compile guides
Post by: spyke01 on July 14, 2006, 05:14:58 am
On the compile guide at http://planeshift.cvs.sourceforge.net/*checkout*/planeshift/planeshift/docs/compiling.html i found some errors, you may also want to put that you need to be in /home/user/development. The scripts should be:

Code: [Select]
$ echo \#\!/bin/sh > planeshiftserver.sh
$ echo "export CRYSTAL=$PWD/cs/" >> planeshiftserver.sh
$ echo "export CEL=$PWD/cel/" >> planeshiftserver.sh
$ echo "export CSCONFPATH=$PWD/cs" >> planeshiftserver.sh
$ echo "cd $PWD/planeshift/" >> planeshiftserver.sh
$ echo "./psserver \$@" >> planeshiftserver.sh
$ chmod +x planeshiftserver.sh

Code: [Select]
$ echo \#\!/bin/sh > planeshiftclient.sh
$ echo "export CRYSTAL=$PWD/cs/" >> planeshiftclient.sh
$ echo "export CEL=$PWD/cel/" >> planeshiftclient.sh
$ echo "export CSCONFPATH=$PWD/cs" >> planeshiftclient.sh
$ echo "cd $PWD/planeshift/" >> planeshiftclient.sh
$ echo "./psclient \$@" >> planeshiftclient.sh
$ chmod +x planeshiftclient.sh
Title: Re: Problem with linux compile guides
Post by: DaveG on July 14, 2006, 02:53:31 pm
Yeah, those are a bit funky.  I wonder if anyone even uses those?