http://bugs.winehq.org/show_bug.cgi?id=4692
Summary: problem when using scons Product: Wine Version: 0.9.8. Platform: PC OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: wine-binary AssignedTo: wine-bugs@winehq.org ReportedBy: fpicca@ltpcm.inpg.fr
hello
To test this bug you must to have a XP partition with python24 and scons install on it.
Now add to your %PATH% the path of scons.bat usually c:/Python24
create SConstruct file with ------- import sys print sys.argv -------
now configure wine to be in windows98 mode. start a wcmd then type scons. you should see:
H:\tmp>scons scons: Reading SConscript files ... ['-c'] scons: done reading SConscript files. scons: Building targets ... scons: `.' is up to date. scons: done building targets.
if you hace writen: scons configure
H:\tmp>scons configure scons: Reading SConscript files ... ['-c', 'configure'] scons: done reading SConscript files. scons: Building targets ... scons: *** Do not know how to make target `configure'. Stop. scons: building terminated because of errors.
the scons error is normal
So as you can see the command line is well parse ['-c'] and ['-c', 'configure']
now if you configure wine to be in XP mode and do the same test you obtained: ['-c'] and ['-c'] the command line is no more well parse.
This problem is not present on a native XP machine.
just for information my c: is the original windows partition. if I do the test by installing phyton23 and scons on the drive_c I obtaine the same result ['-c'] and ['-c'].
Have a nice day.