> From: Steve Taylor <[email protected]> > Date: Thu, 6 Jun 2013 22:04:59 +0000 > > Is there a fix for this? > > I'm using GNU Make 3.81 on Windows 7. > > Lines like this... > > CD D:\Steve\data > MOVE prog1.log .. > > ... cause an error like this... > process_begin: CreateProcess(NULL, CD D:\Steve\data, ...) failed. > make (e=2): The system cannot find the file specified. > > I have a workaround for MOVE by using CMD /C MOVE. But this approach with CD > does not change the current working directory. > > Help please?
First, use the commands in lower case, as in "cd". Second, "move" is not currently supported (the next release will), but you should be able to create a batch file called "move.bat" somewhere on your PATH that just invokes "cmd /c move %*". _______________________________________________ Bug-make mailing list [email protected] https://lists.gnu.org/mailman/listinfo/bug-make
