Hi marcounet,

thanks for digging deeper. I suspect something now.
Can you please add those two lines (more lines for
giving you context):

  "generate.py" within your project (at the end)
.---
| ...
|     argList = ['"%s"' % x for x in argList]  # quote argv elements
|
| print("gen")         # add only this line
| print(os.getcwd())   # and this line too
|
| cmd = " ".join(argList)
| ...

  "tool/bin/generate.py" within SDK (at the top)
.---
| ...
| from generator.runtime.InterruptRegistry import InterruptRegistry
|
| print("tool/bin/gen")    # add only this line
| print(os.getcwd())       # and this line too
|
| #import warnings
| ...
|

If I understand you correctly those two lines print not the same
directory on your machine (on mine they do) when running for example
"generate.py source".

If this holds true, try to adapt the almost last line within the 
"generate.py" residing in your project like this:

IS:
     retval = subprocess.call(cmd, shell=True)

SHOULD:
     retval = subprocess.call(cmd, shell=True, cwd=os.getcwd())

This doesn't change anything for me, but maybe this is crucial
for your Windows version, because otherwise it defaults to another dir.

Does this help?

Regards
Richard

------------------------------------------------------------------------------
HPCC Systems Open Source Big Data Platform from LexisNexis Risk Solutions
Find What Matters Most in Your Big Data with HPCC Systems
Open Source. Fast. Scalable. Simple. Ideal for Dirty Data.
Leverages Graph Analysis for Fast Processing & Easy Data Exploration
http://p.sf.net/sfu/hpccsystems
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to