[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua 5.1 shared libraries, on Mac
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Tue, 24 Jan 2006 22:24:47 -0200
> 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