compiling lua, getting makefile CreateProcess error
Posted
by
Iggyhopper
on Stack Overflow
See other posts from Stack Overflow
or by Iggyhopper
Published on 2010-12-23T07:46:53Z
Indexed on
2010/12/23
7:54 UTC
Read the original article
Hit count: 229
I'm trying to compile Lua 1.1. Why? Because I can. Here's the makefile contents.
all:
(cd src; make)
(cd clients/lib; make)
(cd clients/lua; make)
clean:
(cd src; make clean)
(cd clients/lib; make clean)
(cd clients/lua; make clean)
Here's the error I get just from running make all
.
(cd src; make)
process_begin: CreateProcess((null), (cd src; make), ...) failed.
make (e=2): The system cannot find the file specified.
make: *** [all] Error 2
Why do I get this error? I'm on WinXP-32.
© Stack Overflow or respective owner