Browse Source

reorder args on find command for tcsh

Joe Shochet 20 years ago
parent
commit
0774b87ce6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      direct/src/ffi/genPyCodeNative

+ 2 - 2
direct/src/ffi/genPyCodeNative

@@ -4,7 +4,7 @@
 
 if [ -d ${DIRECT}/lib/pandac ] ; then
 
-    find ${DIRECT}/lib/pandac/. -type f -maxdepth 1 -print0 | xargs -0 rm
+    find ${DIRECT}/lib/pandac/. -maxdepth 1 -type f -print0 | xargs -0 rm
     
     cp ${DIRECT}/src/extensions_native/PandaModules.py            ${DIRECT}/lib/pandac/.
     cp ${DIRECT}/src/extensions_native/libpandaModules.py         ${DIRECT}/lib/pandac/.
@@ -18,4 +18,4 @@ if [ -d ${DIRECT}/lib/pandac ] ; then
     cp ${DIRECT}/src/extensions_native/libotpModules.py           ${DIRECT}/lib/pandac/.
     cp ${DIRECT}/src/extensions_native/libpandafxModules.py       ${DIRECT}/lib/pandac/.
     
-fi    
+fi