MacSummer / make-it-so

Automatically exported from code.google.com/p/make-it-so
1 stars 0 forks source link

Directory separator in windows? #24

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. I am using Windows 7 and when I do a make, I get the following error.

******
mkdir -p bin/monoDebug
The syntax of the command is incorrect.
******

This is because of the fact that Windows uses \ as a path separator and we have 
/ in the command. I don't think this is a real bug, but is there some kind of a 
workaround for this?

What is the expected output? What do you see instead?

******
mkdir -p bin/monoDebug
The syntax of the command is incorrect.
******

What version of the product are you using? On what operating system?
1.2.0

Please provide any additional information below.
Windows 7 Home Basic

Original issue reported on code.google.com by mondi.r...@gmail.com on 5 Feb 2013 at 10:06

GoogleCodeExporter commented 9 years ago
The "-p" command-line argument is not valid on Windows, it's only used in Linux 
and Cygwin.

Original comment by florian.sainjeon on 27 Aug 2013 at 2:13