Browse Source

*** empty log message ***

Joe Shochet 24 years ago
parent
commit
34e6f32227
1 changed files with 4 additions and 4 deletions
  1. 4 4
      direct/src/ffi/genPyCode

+ 4 - 4
direct/src/ffi/genPyCode

@@ -5,25 +5,25 @@
 
 if [ "$1" = "linux" ]; then
     cd $DIRECT/bin
-    exec ppython -d generatePythonCode -v -d $DIRECT/lib/py -e $DIRECT/src/extensions -i libdtoolconfig libpandaexpress libpanda libpandaphysics libdirect libtoontown
+    exec ppython -d generatePythonCode -v -d $DIRECT/lib/py -e $DIRECT/src/extensions -i libdtoolconfig libpandaexpress libpanda libpandaphysics libdirect 
     exit 1
 fi
 
 if [ "$1" = "win-debug" ]; then
     cd $DIRECT/bin
-    exec ppython -d generatePythonCode -v -d `cygpath -w $DIRECT/lib/py` -e `cygpath -w $DIRECT/src/extensions` -i libdtoolconfig libpandaexpress libpanda libpandaphysics libdirect libtoontown 
+    exec ppython -d generatePythonCode -v -d `cygpath -w $DIRECT/lib/py` -e `cygpath -w $DIRECT/src/extensions` -i libdtoolconfig libpandaexpress libpanda libpandaphysics libdirect  
     exit 1
 fi
 
 if [ "$1" = "win-release" ]; then
     cd $DIRECT/bin
-    exec ppython generatePythonCode -v -d `cygpath -w $DIRECT/lib/py` -e `cygpath -w $DIRECT/src/extensions` -i libdtoolconfig libpandaexpress libpanda libpandaphysics libdirect libtoontown
+    exec ppython generatePythonCode -v -d `cygpath -w $DIRECT/lib/py` -e `cygpath -w $DIRECT/src/extensions` -i libdtoolconfig libpandaexpress libpanda libpandaphysics libdirect 
     exit 1
 fi
 
 if [ "$1" = "win-publish" ]; then
     # no assertions, no comments, no docstrings
     cd $DIRECT/bin
-    exec ppython -OO generatePythonCode -O -v -d `cygpath -w $DIRECT/lib/py` -e `cygpath -w $DIRECT/src/extensions` -i libdtoolconfig libpandaexpress libpanda libpandaphysics libdirect libtoontown
+    exec ppython -OO generatePythonCode -O -v -d `cygpath -w $DIRECT/lib/py` -e `cygpath -w $DIRECT/src/extensions` -i libdtoolconfig libpandaexpress libpanda libpandaphysics libdirect 
     exit 1
 fi