Mithro: please apply attached patch to the scratchpad repository. For those that cannot wait for mithro to do this (cough nash cough), feel free to patch locally. Git should be able to handle that.
Iwanowitch
From c0a56e752ce0da1e1dbc7f57dbc6866f459e47e4 Mon Sep 17 00:00:00 2001 From: Vincent Verhoeven <[EMAIL PROTECTED]> Date: Mon, 25 Aug 2008 01:31:21 +0200 Subject: [PATCH] Added daneel-ai to setup.sh --- setup.sh | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/setup.sh b/setup.sh index ebf2661..898c358 100755 --- a/setup.sh +++ b/setup.sh @@ -94,3 +94,30 @@ if [ -e tpsai-py ]; then cd .. fi + + +# Setup daneel-ai for inplace operation +if [ -e daneel-ai ]; then + echo "Setting up daneel-ai for inplace operation..." + cd daneel-ai + + chmod a+x daneel-ai + + if [ -e tp ]; then + rm -rf tp + fi + mkdir tp + cd tp + if [ ! -e __init__.py ]; then + touch __init__.py + fi + if [ ! -e netlib ]; then + ln -s ../../libtpproto-py/tp/netlib netlib + fi + if [ ! -e client ]; then + ln -s ../../libtpclient-py/tp/client client + fi + cd .. + + cd .. +fi -- 1.5.4.3
_______________________________________________ tp-devel mailing list [email protected] http://www.thousandparsec.net/tp/mailman.php/listinfo/tp-devel
