lua-users home
lua-l archive

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


On Fri, Feb 23, 2018 at 6:47 PM, Glenn Travis <travplays@comcast.net> wrote:
> You bring up an interesting point.  I have no idea as to why there were no error messages given.
> Actually, no errors were created.  It just defaulted???? to whatever directory the makefile was in and it looked fine until I went to the terminal command lua line.

Are you sure no error was given by make install?  I do not have a max,
but certainly in my machine, using bash, it gives:

folarte@p:~/tmp/lua-5.3.4$ make install
cd src && mkdir -p /usr/local/bin /usr/local/include /usr/local/lib
/usr/local/man/man1 /usr/local/share/lua/5.3 /usr/local/lib/lua/5.3
mkdir: cannot create directory ‘/usr/local/man/man1’: Permission denied
mkdir: cannot create directory ‘/usr/local/share/lua’: Permission denied
mkdir: cannot create directory ‘/usr/local/lib/lua’: Permission denied
Makefile:61: recipe for target 'install' failed
make: *** [install] Error 1

quite some errors.

Francisco Olarte.