lua-users home
lua-l archive

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


> The default Lua "make install" is also missing the
> *extra* ranlib after install as required by Darwin:

That's because "make install" uses "cp" by default. Try using "cp -p"
(but then you may end up with the wrong owner for the files...):
	make install INSTALL_EXEC="cp -p" INSTALL_DATA="cp -p"
That's what "make local" does.

So, another quirk...
--lhf