lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> % make install
> make: `install' is up to date.
> 
> Hmmm... anything new I need to do to install properly?

The instructions in INSTALL tell you to "make install" *after* Lua has
been built. To build Lua, you must select a platform. So, do
	make linux
	make install
or simpl
	make linux install

I don't know why you get "`install' is up to date" on "make install".
You should get some kind of error message when trying to copy src/lua.
Do you have a file or directory called install? Or is your system case
insensitive and make is getting confused with INSTALL? Oops, that's what
I get in Mac OS X! :-( Oh, well... Another quirk...
--lhf