> It seems that you using a GNU bash command line, not running make from
>windows command line. >a bash-s mkdir treats backslashes differently that's why : >mkdir .\obj\vm no I called the make from the windows commandline in the directory
D:\Smalltalk\Squeak\CroquetSDK-1.0.18\HydraVM\winbuild .
Hope you get some ideas from this informations
Cheers,
Frank
Edelstahlwerke Schmees GmbH
Geschäftsleitung Clemens Schmees Sitz D-01796 Pirna Handelsregister Dresden HRB 54 E-Mail: [hidden email] WEB: www.schmees.com
Diese
E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn
Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten
haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail.
Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht
gestattet. |
2008/8/6 Frank Urbach <[hidden email]>:
>> It seems that you using a GNU bash command line, not running make from >>windows command line. >>a bash-s mkdir treats backslashes differently that's why : >>mkdir .\obj\vm > no I called the make from the windows commandline in the directory > > D:\Smalltalk\Squeak\CroquetSDK-1.0.18\HydraVM\winbuild . > then make sure that mkdir .\obj\vm works correctly. Maybe you should change the PATH environment variable, so that command line can find a windows version of mkdir utility first. > Hope you get some ideas from this informations > > Cheers, > Frank > > > Edelstahlwerke Schmees GmbH > > Geschäftsleitung Clemens Schmees > > Sitz D-01796 Pirna > > Handelsregister Dresden HRB 54 > > E-Mail: [hidden email] > > WEB: www.schmees.com > > > > Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte > Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail > irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und > vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte > Weitergabe dieser Mail ist nicht gestattet. > > > > This e-mail may contain confidental and/or privileged information. If you > are not intended recipient or have received this e-mail in error, please > notify the sender immediately and destroy this e-mail. Any unauthorized > copying, disclosure or distribution of the material in this e-mail is > strictly forbidden. > > > -- Best regards, Igor Stasenko AKA sig. |
In reply to this post by Frank Urbach
>then make sure that
>mkdir .\obj\vm >works correctly. >Maybe you should change the PATH environment variable, so that command >line can find a windows version of mkdir utility first. during the make every mkDir leads to an directory e.g. .objZipPlugin instead of obj\ZipPlugin.
Cheers,
Frank Edelstahlwerke Schmees GmbH
Geschäftsleitung Clemens Schmees Sitz D-01796 Pirna Handelsregister Dresden HRB 54 E-Mail: [hidden email] WEB: www.schmees.com
Diese
E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn
Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten
haben, informieren Sie bitte sofort den Absender und vernichten Sie diese Mail.
Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser Mail ist nicht
gestattet. |
2008/8/6 Frank Urbach <[hidden email]>:
>>then make sure that >>mkdir .\obj\vm >>works correctly. >>Maybe you should change the PATH environment variable, so that command >>line can find a windows version of mkdir utility first. > > during the make every mkDir leads to an directory e.g. .objZipPlugin instead > of obj\ZipPlugin. > yes, its because your shell (or make) can't understand that backslashes is a path separator. You can use 'make -f Makefile.mingw32' or fix the original makefile , or as i suggested before use mkdir which works.. > Cheers, > Frank > > Edelstahlwerke Schmees GmbH > > Geschäftsleitung Clemens Schmees > > Sitz D-01796 Pirna > > Handelsregister Dresden HRB 54 > > E-Mail: [hidden email] > > WEB: www.schmees.com > > > > Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte > Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail > irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und > vernichten Sie diese Mail. Das unerlaubte Kopieren sowie die unbefugte > Weitergabe dieser Mail ist nicht gestattet. > > > > This e-mail may contain confidental and/or privileged information. If you > are not intended recipient or have received this e-mail in error, please > notify the sender immediately and destroy this e-mail. Any unauthorized > copying, disclosure or distribution of the material in this e-mail is > strictly forbidden. > > > -- Best regards, Igor Stasenko AKA sig. |
Free forum by Nabble | Edit this page |