[tuxdroid-svn] r4700 - software_suite_v2/tuxware/installers/unix/trunk
Status: Beta
Brought to you by:
ks156
|
From: ks156 <c2m...@c2...> - 2009-05-29 10:09:44
|
Author: ks156
Date: 2009-05-29 12:09:37 +0200 (Fri, 29 May 2009)
New Revision: 4700
Modified:
software_suite_v2/tuxware/installers/unix/trunk/build.sh
Log:
* Don't need to compile the driver anymore. The SVN version can be used
directly.
* Start the server with the 32 bits version of python for the amd64
architectures.
Modified: software_suite_v2/tuxware/installers/unix/trunk/build.sh
===================================================================
--- software_suite_v2/tuxware/installers/unix/trunk/build.sh 2009-05-29 09:09:58 UTC (rev 4699)
+++ software_suite_v2/tuxware/installers/unix/trunk/build.sh 2009-05-29 10:09:37 UTC (rev 4700)
@@ -377,8 +377,14 @@
serverBin () {
echo "-- Creating server binary"
echo "#!/bin/bash" >$MIRROR_DIR/$PREFIX/$BIN_DIR/tuxhttpserver
- echo "python $PREFIX/$SERVER_DIR/tuxhttpserver.py" >> \
- $MIRROR_DIR/$PREFIX/$BIN_DIR/tuxhttpserver
+ if [ $ARCH == "amd64" ]; then
+ echo "/opt/Python32/bin/python2.6 $PREFIX/$SERVER_DIR/tuxhttpserver.py" >> \
+ $MIRROR_DIR/$PREFIX/$BIN_DIR/tuxhttpserver
+ else
+ echo "python $PREFIX/$SERVER_DIR/tuxhttpserver.py" >> \
+ $MIRROR_DIR/$PREFIX/$BIN_DIR/tuxhttpserver
+ fi
+
chmod +x $MIRROR_DIR/$PREFIX/$BIN_DIR/tuxhttpserver
}
@@ -756,7 +762,7 @@
packPython32
fi
packPythAPI
-compileDriver
+#compileDriver
packJavaAPI
compTuxup
compDfuProgrammer
|